/* ============================================================
   LEVEL UP HOMES — lvluphomes.com
   Middle Ground Design — Warm, Premium, Readable
   ============================================================ */

/* Fonts are loaded in HTML head for faster rendering (no @import here) */

/* ─── VARIABLES ───────────────────────────────────────────── */
:root {
  /* Warm linen page — middle ground between white and dark */
  --page: #ede8df;
  --white: #f8f5ef;
  --surface: #ffffff;
  --surf2: #e2ddd4;
  --surf3: #d8d3c9;

  /* Typography */
  --text: #1e1608;
  --mid: #3e3520;
  --soft: #6e6040;
  --muted: #9c9070;
  --border: rgba(30, 22, 8, 0.12);
  --border2: rgba(30, 22, 8, 0.2);

  /* Gold */
  --gold: #b8973a;
  --gold-dk: #9a7d2e;
  --gold-lt: #cdb46a;

  /* Dark — rich walnut, cognac warmth */
  --dark: #1e1508;
  --dark2: #28200e;
  --dark3: #352c18;
  --dt: #f0e8d8;
  --dm: rgba(240, 232, 216, 0.58);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Raleway', sans-serif;
  --nav-h: 78px;
  --max: 1360px;
  --pad: clamp(1.25rem, 5vw, 5rem);
}

/* ─── RESET ───────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overscroll-behavior: none;
}
body {
  background: var(--page);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  overscroll-behavior: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--sans);
}
::selection {
  background: var(--gold);
  color: #fff;
}

/* ─── LAYOUT ──────────────────────────────────────────────── */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section {
  padding: clamp(5rem, 9vw, 9rem) 0;
}

/* ─── NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(22, 15, 5, 0.94);
  border-bottom-color: rgba(184, 151, 58, 0.15);
}
.nav__row {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
  flex-shrink: 0;
}
.logo__name {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.35s;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}
.logo__loc {
  font-size: 0.5rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.35s;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.nav.scrolled .nl {
  text-shadow: none;
}
.nav.scrolled .logo__name {
  color: var(--dt);
  text-shadow: none;
}
.nav.scrolled .logo__loc {
  color: var(--gold);
  text-shadow: none;
}

/* Nav links */
.nav__links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nl {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.25s;
  position: relative;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}
.nl::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nl:hover::after,
.nl.on::after {
  width: 100%;
}
.nl:hover,
.nl.on {
  color: #fff;
}

/* Right cluster */
.nav__r {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
/* Language toggle — gold pill style, consistent at top AND scrolled */
.lang {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid rgba(205, 180, 106, 0.4);
  border-radius: 999px;
  overflow: hidden;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  font-weight: 500;
  line-height: 1;
  transition: border-color 0.25s ease;
}
.lang a {
  padding: 0.42rem 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  transition:
    color 0.2s ease,
    background 0.2s ease;
  position: relative;
}
.lang a:not(.on):not(.lang-disabled):hover {
  color: #fff;
}
.lang a.on {
  color: #fff;
  background: var(--gold);
}
.lang a.lang-disabled {
  color: rgba(255, 255, 255, 0.42);
  cursor: not-allowed;
  pointer-events: auto;
}
.lang a.lang-disabled:hover {
  color: rgba(255, 255, 255, 0.42);
}
.lang span.lang-sep {
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
  align-self: stretch;
}
/* Tooltip on the disabled TH */
.lang a.lang-disabled::after {
  content: attr(data-tip);
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: rgba(31, 26, 20, 0.96);
  color: var(--gold-lt);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  padding: 0.4rem 0.65rem;
  border-radius: 4px;
  white-space: nowrap;
  border: 1px solid rgba(196, 154, 94, 0.35);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
  pointer-events: none;
  z-index: 100;
}
.lang a.lang-disabled:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
/* Scrolled state: unchanged (matches top state — no visual flip) */

.nav__wa {
  display: flex;
  align-items: center;
  padding: 0.55rem 1.5rem;
  border: 1px solid rgba(184, 151, 58, 0.5);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-lt);
  transition: all 0.3s;
  white-space: nowrap;
}
.nav__wa:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184, 151, 58, 0.08);
}
/* Scrolled state matches top state — no visual flip */
.nav.scrolled .nav__wa {
  border-color: rgba(184, 151, 58, 0.5);
  color: var(--gold-lt);
}
.nav.scrolled .nav__wa:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184, 151, 58, 0.08);
}

/* Hamburger — always white text */
.hbg {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hbg span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: all 0.3s;
}

@media (max-width: 860px) {
  .nav__links,
  .nav__wa {
    display: none;
  }
  .hbg {
    display: flex;
  }
}

/* Mobile drawer */
.drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  z-index: 99;
  padding: 0 var(--pad);
  overflow-y: auto;
}
.drawer.open {
  display: block;
}
.drawer ul {
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.drawer li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.drawer a {
  display: block;
  padding: 1.1rem 0;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s;
}
.drawer a:hover {
  color: var(--gold-lt);
}
/* Mobile drawer language toggle — gold pill, wider + slimmer */
.drawer-lang {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid rgba(205, 180, 106, 0.4);
  border-radius: 999px;
  overflow: hidden;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  font-weight: 500;
  line-height: 1;
  margin: 2.25rem 0 1rem;
}
.drawer .drawer-lang a {
  display: inline-block;
  padding: 0.42rem 1.6rem;
  color: rgba(255, 255, 255, 0.7);
  transition:
    color 0.2s ease,
    background 0.2s ease;
  text-decoration: none;
}
.drawer .drawer-lang a.on {
  color: #fff;
  background: var(--gold);
}
.drawer .drawer-lang a.lang-disabled {
  color: rgba(255, 255, 255, 0.42);
  cursor: not-allowed;
  pointer-events: auto;
}
.drawer span.lang-sep {
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
  align-self: stretch;
  display: block;
}

/* ─── HERO TOP GRADIENT (nav readability) ────────────────── */
.hero__topfade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, rgba(8, 7, 5, 0.5) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 660px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
/* Shorter banner variant for inner pages */
.hero--sub {
  height: clamp(380px, 58vh, 580px);
  min-height: unset;
}
.hero--sub .hero__h1 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
}
.hero--sub .hero__inner {
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.hero__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  animation: drift 24s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes drift {
  from {
    transform: scale(1);
    background-position: center 30%;
  }
  to {
    transform: scale(1.025);
    background-position: center 35%;
  }
}
.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(8, 5, 2, 0.4) 0%,
      rgba(8, 5, 2, 0.1) 20%,
      rgba(8, 5, 2, 0) 40%,
      rgba(8, 5, 2, 0.55) 70%,
      rgba(8, 5, 2, 0.92) 100%
    ),
    linear-gradient(to right, rgba(8, 5, 2, 0.35) 0%, rgba(8, 5, 2, 0) 60%);
  z-index: 1;
}
.hero__sl {
  position: absolute;
  inset: 0;
  background: linear-gradient(106deg, rgba(8, 7, 5, 0.32) 0%, transparent 52%);
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(4rem, 7vw, 6.5rem);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
}
.hero__left {
  max-width: 700px;
}
.hero__label {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: up 0.9s 0.3s ease forwards;
}
.hero__label-line {
  width: 30px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero__label-text {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}
.hero__h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3.2rem, 7.5vw, 6.8rem);
  line-height: 1.04;
  color: #fff;
  opacity: 0;
  animation: up 1s 0.5s ease forwards;
}
.hero__h1 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.82);
}
.hero__sub {
  margin-top: 1.35rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.82;
  max-width: 400px;
  opacity: 0;
  animation: up 0.9s 0.75s ease forwards;
}
.hero__btns {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: up 0.9s 0.95s ease forwards;
}
.hero__sc {
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: clamp(4rem, 7vw, 6.5rem);
  opacity: 0;
  animation: fi 1.2s 1.6s ease forwards;
}
.hero__sc-txt {
  font-size: 0.5rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  writing-mode: vertical-rl;
}
.hero__sc-line {
  width: 1px;
  height: 54px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.42), transparent);
  animation: pulse 2.2s 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.42;
  }
  50% {
    opacity: 0.85;
  }
}
@keyframes up {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fi {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 600px) {
  .hero__sc {
    display: none;
  }
  .hero__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero__h1 {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.88rem 2.2rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dk);
  border-color: var(--gold-dk);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
}
.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.btn-line {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
}
.btn-line:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-dark {
  background: var(--dark);
  color: var(--dt);
  border: 1px solid var(--dark);
}
.btn-dark:hover {
  background: var(--dark3);
}

/* ─── EYEBROW ─────────────────────────────────────────────── */
.ey {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.ey__l {
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.ey__t {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
}
.ey--lt .ey__t {
  color: var(--gold-lt);
}

/* ─── SECTION TITLES ──────────────────────────────────────── */
.st {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  color: var(--text);
}
.st em {
  font-style: italic;
}
.st--w {
  color: #fff;
}
.sb {
  font-size: 0.9rem;
  color: var(--soft);
  line-height: 1.9;
  max-width: 500px;
  margin-top: 0.85rem;
}
.sb--w {
  color: var(--dm);
}

/* ─── STATS BAR ───────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.stat {
  padding: 2.4rem var(--pad);
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat:last-child {
  border-right: none;
}
.stat__v {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat__l {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft);
  margin-top: 0.45rem;
  display: block;
}
@media (max-width: 600px) {
  .stats {
    grid-template-columns: 1fr;
  }
  .stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 1.75rem var(--pad);
  }
  .stat:last-child {
    border-bottom: none;
  }
}

/* ─── PROPERTY CARDS ──────────────────────────────────────── */
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 980px) {
  .grid3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .grid3 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(26, 23, 21, 0.1);
}
.card:hover .card__img {
  transform: scale(1.04);
}

.card__ph {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
  display: block;
}
.card__img.blur {
  filter: blur(10px);
  transform: scale(1.12);
}
.card:hover .card__img.blur {
  transform: scale(1.15);
}
.card__fog {
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 5, 0.28);
}

.card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.38rem 0.85rem;
}
.b-available {
  background: var(--gold);
  color: #fff;
}
.b-soon {
  background: rgba(22, 15, 5, 0.88);
  color: var(--gold-lt);
  border: 1px solid rgba(184, 151, 58, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.b-sold {
  background: #8b3a3a;
  color: #fff;
}

/* Legacy aliases (kept so old markup doesn't break) */
.b-sale {
  background: var(--gold);
  color: #fff;
}
.b-preview {
  background: rgba(22, 15, 5, 0.88);
  color: var(--gold-lt);
  border: 1px solid rgba(184, 151, 58, 0.35);
}

/* Sub-tag (e.g. "Under Construction · Nov 15") */
.card__sub-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.54rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.38rem 0.75rem;
  background: rgba(22, 15, 5, 0.78);
  color: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
@media (max-width: 480px) {
  .card__sub-tag {
    font-size: 0.5rem;
    padding: 0.3rem 0.6rem;
  }
}

.card__ph-empty {
  aspect-ratio: 4/3;
  background: var(--surf2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.65rem;
}
.card__ph-empty-icon {
  font-size: 1.8rem;
  color: var(--soft);
  opacity: 0.2;
}
.card__ph-empty-txt {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft);
  opacity: 0.45;
}

.card__b {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.card__loc {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.card__name {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--text);
}
.card__specs {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.card__spec {
  font-size: 0.7rem;
  color: var(--soft);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.card__spec::before {
  content: '';
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.card__foot {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.card__price {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.card__arr {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soft);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s;
}
.card:hover .card__arr {
  color: var(--gold);
  gap: 0.7rem;
}

/* ─── TABS ────────────────────────────────────────────────── */
.tabs {
  display: flex;
  border-bottom: 1px solid var(--border2);
  margin-bottom: 3rem;
}
.tab {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--soft);
  padding: 0.95rem 2rem 0.88rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  transition: all 0.25s;
  cursor: pointer;
}
.tab.on,
.tab:hover {
  color: var(--text);
  border-bottom-color: var(--gold);
}

/* ─── GALLERY ─────────────────────────────────────────────── */
.gal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
@media (max-width: 640px) {
  .gal {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gal__i {
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  background: var(--surf2);
}
.gal__i:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gal__i:not(:first-child) {
  aspect-ratio: 1;
}
.gal__i img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gal__i:hover img {
  transform: scale(1.05);
}
.gal__i::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 5, 0);
  transition: background 0.3s;
}
.gal__i:hover::after {
  background: rgba(8, 7, 5, 0.14);
}
@media (max-width: 640px) {
  .gal__i:first-child {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/9;
  }
}

/* Lightbox */
.lb {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(8, 7, 5, 0.96);
  align-items: center;
  justify-content: center;
}
.lb.on {
  display: flex;
}
.lb__img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
}
.lb__x {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 2.2rem;
  font-weight: 200;
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  line-height: 1;
}
.lb__x:hover {
  color: #fff;
}
.lb__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1rem;
  background: none;
}
.lb__btn:hover {
  border-color: var(--gold-lt);
  color: var(--gold-lt);
}
.lb__prev {
  left: 1.5rem;
}
.lb__next {
  right: 1.5rem;
}
@media (max-width: 480px) {
  .lb__prev,
  .lb__next {
    display: none;
  }
}

/* ─── LISTING LAYOUT ──────────────────────────────────────── */
.l-grid {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 1060px) {
  .l-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.l-sticky {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
@media (max-width: 1060px) {
  .l-sticky {
    position: static;
  }
}

/* Price Box (dark sidebar) */
.pbox {
  background: var(--dark);
  padding: 2.5rem;
}
.pbox__lbl {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dm);
  margin-bottom: 0.4rem;
}
.pbox__p {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.pbox__n {
  font-size: 0.7rem;
  color: var(--dm);
  margin-bottom: 1.75rem;
  letter-spacing: 0.04em;
}
.pbox__div {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 1.75rem 0;
}
.pbox__btns {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.pbox__btns .btn {
  justify-content: center;
  width: 100%;
}

.mspecs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  margin-top: 1.5px;
}
.ms {
  background: var(--dark2);
  padding: 1.25rem;
  text-align: center;
}
.ms__v {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold-lt);
  line-height: 1;
}
.ms__l {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dm);
  margin-top: 0.35rem;
}

/* ─── SPECS TABLE ─────────────────────────────────────────── */
.specs {
  width: 100%;
  border-collapse: collapse;
}
.specs tr {
  border-bottom: 1px solid var(--border);
}
.specs td {
  padding: 0.88rem 0;
  font-size: 0.85rem;
  line-height: 1.5;
}
.specs td:first-child {
  color: var(--soft);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  width: 44%;
  padding-right: 1rem;
}
.specs td:last-child {
  color: var(--text);
  font-weight: 400;
}

/* ─── PROSE ───────────────────────────────────────────────── */
.prose h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 2.5rem 0 0.85rem;
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
  color: var(--text);
}
.prose p {
  font-size: 0.9rem;
  line-height: 1.95;
  color: var(--mid);
  margin-bottom: 1.1rem;
}

/* ─── VIDEO ───────────────────────────────────────────────── */
.vid {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--surf2);
  cursor: pointer;
  overflow: hidden;
}
.vid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vid__ov {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 7, 5, 0.3);
  transition: background 0.3s;
}
.vid:hover .vid__ov {
  background: rgba(8, 7, 5, 0.46);
}
.vid__btn {
  width: 72px;
  height: 72px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s;
}
.vid:hover .vid__btn {
  border-color: var(--gold-lt);
  background: rgba(184, 151, 58, 0.18);
}

/* ─── LISTING HERO ────────────────────────────────────────── */
.lhero {
  margin-top: 0;
  position: relative;
  height: clamp(360px, 56vw, 640px);
  overflow: hidden;
  background: var(--surf2);
}
.lhero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lhero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--page), transparent);
}

/* ─── HANDCRAFTED SECTION ─────────────────────────────────── */
.craft {
  background: var(--dark);
}
.craft__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  overflow: hidden;
}
@media (max-width: 760px) {
  .craft__inner {
    grid-template-columns: 1fr;
  }
}
.craft__photo {
  position: relative;
  overflow: hidden;
  min-height: 340px;
}
.craft__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.craft__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 55%, var(--dark) 100%);
}
@media (max-width: 760px) {
  .craft__photo::after {
    background: linear-gradient(to top, var(--dark) 0%, transparent 55%);
  }
}
.craft__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7rem) clamp(2.5rem, 5vw, 6rem);
}
.craft__pillars {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
}
.craft__pillar {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 220, 140, 0.1);
}
.craft__pillar:last-child {
  border-bottom: none;
}
.craft__pillar-num {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  min-width: 2rem;
  margin-top: 0.15rem;
}
.craft__pillar-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.3rem;
}
.craft__pillar-body {
  font-size: 0.85rem;
  color: var(--dm);
  line-height: 1.85;
}

/* ─── QUALITY PLEDGE ──────────────────────────────────────── */
.pledge {
  background: var(--white);
  padding: clamp(5rem, 9vw, 9rem) 0;
  position: relative;
  overflow: hidden;
}
.pledge::before {
  content: '\201C';
  position: absolute;
  left: 50%;
  top: -1rem;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 28rem;
  font-weight: 300;
  color: rgba(30, 21, 8, 0.04);
  line-height: 1;
  pointer-events: none;
}
.pledge__inner {
  display: flex;
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .pledge__inner {
    flex-direction: column;
    text-align: center;
  }
}
.pledge__portrait {
  flex-shrink: 0;
  width: clamp(120px, 16vw, 180px);
  height: clamp(120px, 16vw, 180px);
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  background: var(--surf2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pledge__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.pledge__portrait-placeholder {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.35;
}
.pledge__text {
  flex: 1;
}
.pledge__rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.75rem;
}
@media (max-width: 700px) {
  .pledge__rule {
    margin-left: auto;
    margin-right: auto;
  }
}
.pledge__label {
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.pledge__quote {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 2rem;
}
.pledge__sig {
  font-family: 'Great Vibes', 'Allura', cursive;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
  transform: rotate(-2deg);
  transform-origin: left center;
}
.pledge__name {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
}

/* ─── TESTIMONIALS ────────────────────────────────────────── */
.testi {
  background: var(--page);
  padding: clamp(3.5rem, 6vw, 7rem) 0;
}
.testi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 900px) {
  .testi__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
}
.tcard {
  background: var(--white);
  padding: 2.25rem 2rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.tcard__mark {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 0.8;
  margin-bottom: 1rem;
  opacity: 0.55;
}
.tcard__text {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--mid);
  flex: 1;
  margin-bottom: 1.75rem;
}
.tcard__div {
  width: 24px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1rem;
}
.tcard__name {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.tcard__detail {
  font-size: 0.78rem;
  color: var(--soft);
}

/* ─── SCROLLING GALLERY ───────────────────────────────────── */
.scroll-gallery {
  background: var(--white);
  padding: clamp(2.5rem, 4vw, 3.5rem) 0 clamp(3rem, 5vw, 4rem);
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.scroll-gallery__label {
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  margin-bottom: 1.75rem;
  letter-spacing: 0.04em;
}
.scroll-gallery__label span {
  display: inline-block;
  position: relative;
  padding: 0 1.5rem;
}
.scroll-gallery__label span::before,
.scroll-gallery__label span::after {
  content: '';
  position: absolute;
  top: 50%;
  width: clamp(30px, 5vw, 60px);
  height: 1px;
}
.scroll-gallery__label span::before {
  right: 100%;
  background: linear-gradient(to left, var(--border2), transparent);
}
.scroll-gallery__label span::after {
  left: 100%;
  background: linear-gradient(to right, var(--border2), transparent);
}
.scroll-gallery__track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 3%,
    black 97%,
    transparent 100%
  );
}
.scroll-gallery__track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: galleryScroll 80s linear infinite;
}
.scroll-gallery__track:hover {
  animation-play-state: paused;
}
@keyframes galleryScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.scroll-gallery__item {
  flex-shrink: 0;
  width: clamp(200px, 24vw, 340px);
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid var(--border);
}
.scroll-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.scroll-gallery__track:hover .scroll-gallery__item img {
  transform: scale(1.04);
}

/* Signature cards — villa portfolio */
.sig-card {
  flex-shrink: 0;
  position: relative;
  width: clamp(240px, 28vw, 380px);
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  display: block;
}
.sig-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.sig-card:hover > img {
  transform: scale(1.05);
}
.sig-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 7, 5, 0.85) 0%,
    rgba(8, 7, 5, 0.25) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}
.sig-card__caption {
  position: absolute;
  z-index: 2;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  color: #fff;
}
.sig-card__rule {
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 0.8rem;
}
.sig-card__name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.1;
  margin-bottom: 0.3rem;
  color: #fff;
}
.sig-card__loc {
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.scroll-gallery__track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}
.scroll-gallery__track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: galleryScroll 80s linear infinite;
}
/* ─── PAGE BANNER (inner pages) ──────────────────────────── */
.p-banner {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 0;
  display: flex;
  align-items: flex-end;
}
.p-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
  animation: drift 24s ease-in-out infinite alternate;
}
.p-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 7, 5, 0.78) 0%,
    rgba(8, 7, 5, 0.32) 48%,
    transparent 100%
  );
  pointer-events: none;
}
.p-banner__shade-left {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(106deg, rgba(8, 7, 5, 0.32) 0%, transparent 52%);
  pointer-events: none;
}
.p-banner__topfade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(8, 7, 5, 0.38) 0%, transparent 100%);
  pointer-events: none;
}
.p-banner__text {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad) clamp(4rem, 7vw, 6.5rem);
}
.p-banner__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}
.p-banner__line {
  width: 30px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.p-banner__loc {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}
.p-banner__h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3.2rem, 7.5vw, 6.8rem);
  line-height: 1.04;
  color: #fff;
}
.p-banner__h1 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.82);
}
.p-banner__sub {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 420px;
}
.p-banner__btns {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.p-banner__scroll {
  position: absolute;
  bottom: clamp(3rem, 5vw, 5rem);
  right: var(--pad);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.p-banner__scroll-txt {
  font-size: 0.5rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  writing-mode: vertical-rl;
}
.p-banner__scroll-line {
  width: 1px;
  height: 54px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.42), transparent);
  animation: pulse 2.2s 1s ease-in-out infinite;
}

/* ─── CONTACT BAR (properties page) ──────────────────────── */
.p-contact {
  background: var(--dark);
  border-top: 1px solid rgba(184, 151, 58, 0.18);
  padding: 2.25rem 0;
}
.p-contact__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.p-contact__methods {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.p-contact__method {
  text-decoration: none;
}
.p-contact__ml {
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240, 232, 216, 0.4);
  margin-bottom: 0.18rem;
}
.p-contact__mv {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(240, 232, 216, 0.82);
  transition: color 0.2s;
}
.p-contact__method:hover .p-contact__mv {
  color: var(--gold-lt);
}
.p-contact__divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .p-contact__divider {
    display: none;
  }
  .p-contact__methods {
    gap: 1.5rem;
  }
}

/* ─── BREADCRUMB ──────────────────────────────────────────── */
.bc {
  border-bottom: 1px solid var(--border);
}
.bc__inner {
  padding: 0.9rem 0;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft);
}
.bc__inner a {
  color: var(--soft);
  transition: color 0.2s;
}
.bc__inner a:hover {
  color: var(--gold);
}
.bc__inner strong {
  color: var(--text);
  font-weight: 400;
}

/* ─── BRAND STRIP ─────────────────────────────────────────── */
.brand {
  background: var(--dark);
  padding: clamp(5rem, 9vw, 9rem) 0;
  position: relative;
  overflow: hidden;
}
.brand::after {
  content: '\201C';
  position: absolute;
  right: var(--pad);
  top: -1rem;
  font-family: var(--serif);
  font-size: 22rem;
  color: rgba(255, 255, 255, 0.025);
  line-height: 1;
  pointer-events: none;
}
.brand__q {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.65rem, 3.2vw, 2.75rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  max-width: 840px;
  margin-bottom: 2rem;
}
.brand__a {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── SPLIT ───────────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  min-height: 560px;
}
.split__ph {
  overflow: hidden;
  position: relative;
  min-height: 340px;
}
.split__ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split__tx {
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7rem) clamp(2.5rem, 5vw, 6rem);
}
.split__tx p {
  font-size: 0.9rem;
  color: var(--dm);
  line-height: 1.95;
  margin-bottom: 1rem;
}
@media (max-width: 760px) {
  .split {
    grid-template-columns: 1fr;
  }
  .split__ph {
    min-height: 300px;
  }
}

/* ─── STEPS ───────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  background: var(--white);
}
.step {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--border);
}
.step:last-child {
  border-right: none;
}
.step__n {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1rem;
}
.step__t {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.9rem;
  color: var(--text);
}
.step__b {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.9;
}
@media (max-width: 860px) {
  .steps {
    grid-template-columns: 1fr;
  }
  .step {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .step:last-child {
    border-bottom: none;
  }
}

/* Multi-row steps (About page) */
.steps + .steps {
  border-top: none;
}

/* ─── PHOTO STRIP ─────────────────────────────────────────── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.photo-strip__item {
  overflow: hidden;
  aspect-ratio: 3/4;
}
.photo-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.photo-strip__item:hover img {
  transform: scale(1.05);
}
@media (max-width: 760px) {
  .photo-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .photo-strip__item {
    aspect-ratio: 1;
  }
}
@media (max-width: 420px) {
  .photo-strip {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─── TWO-COL GRID ────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 860px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.two-col--wide {
  max-width: 1100px;
}

/* ─── CONTACT ITEMS ───────────────────────────────────────── */
.ci {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--border);
}
.ci__icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.ci__lbl {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 0.25rem;
}
.ci__val {
  font-size: 0.92rem;
  font-weight: 400;
}
.ci__val a {
  color: var(--text);
  transition: color 0.2s;
}
.ci__val a:hover {
  color: var(--gold);
}

/* ─── SOLARA CURTAIN ──────────────────────────────────────── */
.curtain-hero {
  margin-top: 0;
  position: relative;
  height: clamp(400px, 60vw, 680px);
  overflow: hidden;
  background: var(--dark2);
}
.curtain-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(16px);
  transform: scale(1.1);
  display: block;
}
.curtain-hero__ov {
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 5, 0.52);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.6rem;
  padding: 0 var(--pad);
}
.c-lbl {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-lt);
}
.c-name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 6rem);
  color: #fff;
  line-height: 1.06;
}
.c-price {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--gold-lt);
  font-weight: 300;
}
.c-loc {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.reg-box {
  background: var(--white);
  border: 1px solid var(--border);
  max-width: 660px;
  margin: 0 auto;
  padding: 3.5rem;
  text-align: center;
}
@media (max-width: 560px) {
  .reg-box {
    padding: 2.5rem 1.5rem;
  }
}
.reg-box__rule {
  width: 1px;
  height: 44px;
  background: var(--gold);
  margin: 0 auto 1.75rem;
}
.reg-box__lbl {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.reg-box__t {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 300;
  margin-bottom: 1.2rem;
  color: var(--text);
}
.reg-box__b {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 2rem;
}
.reg-box__btns {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cd {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.75rem 0;
  flex-wrap: wrap;
}
.cd-u {
  text-align: center;
  min-width: 60px;
}
.cd-n {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  display: block;
}
.cd-l {
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft);
  margin-top: 0.3rem;
  display: block;
}
.cd-sep {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--border2);
  line-height: 1;
  padding-bottom: 0.4rem;
}

/* ─── PAGE HEADER (inner pages) ───────────────────────────── */
.page-head {
  background: var(--white);
  padding: calc(var(--nav-h) + 4.5rem) 0 4.5rem;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.page-head__bg {
  position: absolute;
  right: var(--pad);
  top: var(--nav-h);
  font-family: var(--serif);
  font-size: 18rem;
  font-weight: 300;
  color: rgba(26, 23, 21, 0.03);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

/* ─── PROPERTIES PAGE HEADER ──────────────────────────────── */
.ph {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: calc(var(--nav-h) + 4rem) 0 3.5rem;
}
.ph__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
}
.pills {
  display: flex;
  gap: 2.5rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}
.pill + .pill {
  padding-left: 2.5rem;
  border-left: 1px solid var(--border);
}
.pill__v {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.pill__l {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft);
  margin-top: 0.3rem;
}
.ctabar {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex-shrink: 0;
}
.ctabar .btn {
  justify-content: center;
  min-width: 220px;
}
@media (max-width: 640px) {
  .ctabar {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .ctabar .btn {
    min-width: unset;
    flex: 1;
  }
  .pills {
    gap: 1.5rem;
  }
  .pill + .pill {
    padding-left: 1.5rem;
  }
}

/* ─── CTA STRIP ───────────────────────────────────────────── */
.cta-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
}
.cta-strip__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.cta-strip__btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
@media (max-width: 560px) {
  .cta-strip__row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: var(--dt);
  padding: 5.5rem 0 3rem;
}
.footer__g {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media (max-width: 860px) {
  .footer__g {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 480px) {
  .footer__g {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.f-name {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: var(--dt);
}
.f-loc {
  font-size: 0.5rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-lt);
}
.f-tag {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-style: italic;
  font-family: var(--serif);
  color: rgba(240, 232, 216, 0.92);
  line-height: 1.5;
}
.f-ht {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.25rem;
}
.f-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.f-links a {
  font-size: 0.88rem;
  color: rgba(240, 232, 216, 0.72);
  transition: color 0.2s;
}
.f-links a:hover {
  color: var(--dt);
}
/* Disabled (TH coming soon) footer link */
.f-links a.lang-disabled-footer {
  color: rgba(240, 232, 216, 0.32);
  cursor: not-allowed;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.f-links a.lang-disabled-footer:hover {
  color: rgba(240, 232, 216, 0.32);
}
.f-links a.lang-disabled-footer::after {
  content: attr(data-tip);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--gold-lt);
  opacity: 0.8;
  padding: 0.12rem 0.4rem;
  border: 1px solid rgba(196, 154, 94, 0.28);
  border-radius: 3px;
  text-transform: uppercase;
}
.f-c p:not(.f-ht) {
  font-size: 0.88rem;
  color: rgba(240, 232, 216, 0.72);
  margin-bottom: 0.55rem;
  line-height: 1.7;
}

/* Footer Thai Version on mobile - clearer stacking */
@media (max-width: 480px) {
  .f-links a.lang-disabled-footer {
    flex-wrap: wrap;
    gap: 0.4rem;
  }
  .f-links a.lang-disabled-footer::after {
    font-size: 0.56rem;
  }
}
.f-c a {
  color: rgba(240, 232, 216, 0.72);
  transition: color 0.2s;
}
.f-c a:hover {
  color: var(--dt);
}
.footer__bot {
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.f-copy {
  font-size: 0.65rem;
  color: rgba(240, 232, 216, 0.38);
  letter-spacing: 0.06em;
}

/* ─── PROPERTY LISTING CARDS ON CONTACT PAGE ─────────────── */
.prop-link {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--surf2);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition:
    border-color 0.2s,
    background 0.2s;
}
.prop-link:hover {
  border-color: var(--gold);
  background: var(--white);
}
.prop-link__img {
  width: 72px;
  height: 52px;
  overflow: hidden;
  flex-shrink: 0;
}
.prop-link__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prop-link__img img.blur {
  filter: blur(5px);
  transform: scale(1.1);
}
.prop-link__name {
  font-family: var(--serif);
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}
.prop-link__tag {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.prop-link__tag--soft {
  color: var(--soft);
}
.prop-link__arr {
  margin-left: auto;
  color: var(--soft);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ─── QUOTE BOX ───────────────────────────────────────────── */
.quote-box {
  padding: 2rem;
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold);
  background: var(--white);
  margin-top: 2rem;
}
.quote-box p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65;
}
.quote-box__attr {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.75rem;
}

/* ─── REVEAL ──────────────────────────────────────────────── */
.rv {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.rv.in {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}

/* ─── UTILITIES ───────────────────────────────────────────── */
.hidden {
  display: none !important;
}
.mt2 {
  margin-top: 2rem;
}
.mt3 {
  margin-top: 3rem;
}
.mb2 {
  margin-bottom: 2rem;
}
.mb3 {
  margin-bottom: 3rem;
}
.text-gold {
  color: var(--gold);
}
.text-soft {
  color: var(--soft);
}

/* ─── PRINT / ACCESSIBILITY ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .rv {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__photo {
    animation: none;
  }
  * {
    animation-duration: 0.01ms !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE FIXES
   ═══════════════════════════════════════════════════════════ */

/* Tighter nav on small phones */
@media (max-width: 420px) {
  :root {
    --nav-h: 64px;
  }
  .logo__name {
    font-size: 0.9rem;
    letter-spacing: 0.16em;
  }
}

/* Hide scroll indicator on sub-page hero (too cramped) */
.hero--sub .hero__sc {
  display: none;
}

/* Hero sub — tighter bottom padding on mobile */
@media (max-width: 600px) {
  .hero--sub .hero__inner {
    padding-bottom: 2.5rem;
  }
  .hero--sub .hero__label {
    margin-bottom: 1rem;
  }
}

/* About page section 2 — stack on mobile */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
@media (max-width: 760px) {
  .about-split {
    grid-template-columns: 1fr;
  }
  .about-split .gold-bar {
    display: none;
  } /* hide side accent bar */
}

/* Pledge portrait — proper size when stacked */
@media (max-width: 700px) {
  .pledge__portrait {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
  }
  .pledge__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }
  .pledge__quote {
    font-size: clamp(1.05rem, 4.2vw, 1.3rem);
    line-height: 1.65;
  }
  .pledge__rule {
    margin: 0 auto 1.5rem;
  }
}

/* Scrolling gallery — bigger items on mobile */
@media (max-width: 640px) {
  .scroll-gallery__item {
    width: clamp(220px, 78vw, 320px);
    height: clamp(160px, 52vw, 220px);
  }
}

/* Testimonials — tighter padding on mobile */
@media (max-width: 640px) {
  .testi {
    padding: 3.5rem 0;
  }
  .testi__grid {
    margin-top: 2rem;
  }
  .tcard {
    padding: 2rem 1.5rem;
  }
}

/* Stat number smaller on mobile */
@media (max-width: 480px) {
  .stat__v {
    font-size: 2.2rem;
  }
  .stat {
    padding: 1.5rem var(--pad);
  }
}

/* Claims section — tighter padding on mobile */
@media (max-width: 640px) {
  .claims {
    padding: 0;
  }
  .claim {
    padding: 1.5rem 0;
  }
  .claim__num {
    font-size: 2.4rem;
  }
}

/* Properties contact row — stack on mobile */
@media (max-width: 560px) {
  .p-contact__row {
    flex-direction: column;
    align-items: flex-start;
  }
  .p-contact__row .btn {
    width: 100%;
    justify-content: center;
  }
}

/* About section 2 — tighter on mobile */
@media (max-width: 760px) {
  section[style*='padding:3rem 0 3.5rem'] {
    padding: 2.5rem 0 !important;
  }
}

/* Brand strip — tighter on mobile */
@media (max-width: 640px) {
  .brand {
    padding: 3.5rem 0;
  }
  .brand__q {
    font-size: clamp(1.3rem, 5.5vw, 2rem);
  }
}

/* Process steps — reduce step padding on mobile */
@media (max-width: 640px) {
  .step {
    padding: 2rem 1.5rem;
  }
  .step__n {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
  }
}

/* Photo strip — portrait on mobile looks better as square */
@media (max-width: 480px) {
  .photo-strip__item {
    aspect-ratio: 1;
  }
}

/* Listing page price box — full padding on mobile */
@media (max-width: 640px) {
  .pbox {
    padding: 2rem 1.5rem;
  }
  .pbox__p {
    font-size: 2rem;
  }
}

/* Listing gallery — ensure first item works on 2-col mobile */
@media (max-width: 640px) {
  .gal__i:first-child {
    aspect-ratio: 4/3;
  }
}

/* Footer — reduce padding on mobile */
@media (max-width: 640px) {
  .footer {
    padding: 3.5rem 0 2rem;
  }
  .footer__g {
    padding-bottom: 2rem;
    gap: 2rem;
  }
}

/* CTA sections — tighter padding on mobile */
@media (max-width: 640px) {
  .cta-strip {
    padding: 2.5rem 0;
  }
}

/* Buttons — slightly smaller on very small screens */
@media (max-width: 380px) {
  .btn {
    padding: 0.82rem 1.5rem;
    font-size: 0.58rem;
  }
}

/* Prose text — slightly larger on mobile for readability */
@media (max-width: 480px) {
  .prose p {
    font-size: 0.9rem;
  }
  .specs td {
    font-size: 0.82rem;
  }
}

/* Reg box countdown — tighter on mobile */
@media (max-width: 480px) {
  .cd-n {
    font-size: 1.8rem;
  }
  .cd-sep {
    font-size: 1.5rem;
  }
  .cd-u {
    min-width: 48px;
  }
}

/* Breadcrumb — smaller on mobile */
@media (max-width: 480px) {
  .bc__inner {
    font-size: 0.56rem;
  }
}

/* About section 2 photo — cap height on mobile when stacked */
@media (max-width: 760px) {
  .about-split div[style*='aspect-ratio:3/4'] {
    max-height: 280px;
    aspect-ratio: 16/9 !important;
  }
}

/* Testimonials mobile — improve readability */
@media (max-width: 640px) {
  .testi {
    padding: 3rem 0;
  }
  .testi__grid {
    margin-top: 1.75rem;
    gap: 1rem;
  }
  .tcard__text {
    font-size: 1.1rem;
  }
  .tcard__name {
    font-size: 0.92rem;
  }
  .tcard__detail {
    font-size: 0.85rem;
  }
}

/* ─── FLOOR PLANS (listing pages) ─────────────────────────── */
.fp {
  border: 1px solid var(--border);
  background: var(--white);
}
.fp__tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
}
.fp__tab {
  flex: 1;
  padding: 1rem 1.25rem;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--soft);
  background: transparent;
  border: none;
  border-right: 1px solid var(--border);
  cursor: pointer;
  transition:
    color 0.2s,
    background 0.2s;
}
.fp__tab:last-child {
  border-right: none;
}
.fp__tab:hover {
  color: var(--text);
}
.fp__tab--on {
  color: var(--text);
  background: var(--page);
  position: relative;
}
.fp__tab--on::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--gold);
}
.fp__frame {
  aspect-ratio: 4/3;
  background: var(--surf2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.fp__frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.25s ease;
  background: var(--white);
}
.fp__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surf2);
  color: var(--muted);
  font-size: 2rem;
  opacity: 0.3;
  transition: opacity 0.25s ease;
}

/* ─── SIDEBAR CTA HEAD ────────────────────────────────────── */
.pbox__cta-head {
  margin-bottom: 1.25rem;
  text-align: center;
}
.pbox__cta-rule {
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1rem;
}
.pbox__cta-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--dt);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.pbox__cta-sub {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--dm);
  line-height: 1.6;
}

/* ─── CONTACT FORM ───────────────────────────────────────── */
.cform {
  width: 100%;
}
.cform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 560px) {
  .cform__row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
.cform__field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}
.cform__row .cform__field {
  margin-bottom: 0;
}
.cform__field label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.cform__field input,
.cform__field select,
.cform__field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border2);
  background: var(--white);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.5;
  transition:
    border-color 0.2s,
    background 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.cform__field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--sans);
}
.cform__field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%236E6040' stroke-width='1.4' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.cform__field input:focus,
.cform__field select:focus,
.cform__field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.cform__field input::placeholder,
.cform__field textarea::placeholder {
  color: var(--muted);
  font-weight: 300;
}

/* Success state */
.cform__success {
  text-align: center;
  padding: 3rem 1rem;
}
.cform__success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
}
.cform__success-title {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text);
  margin-bottom: 0.75rem;
}
.cform__success-text {
  font-size: 0.92rem;
  color: var(--soft);
  line-height: 1.75;
}

/* ─── CONTACT FORM — compact variant inside shared section ─── */
.cform-wrap {
  max-width: 640px;
  margin: clamp(3rem, 5vw, 4.5rem) auto 0;
  padding-top: clamp(2.5rem, 4vw, 3.5rem);
  border-top: 1px solid var(--border);
}
.cform-wrap__head {
  text-align: center;
  margin-bottom: 2rem;
}
.cform-wrap__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  color: var(--text);
  line-height: 1.25;
}
.cform-wrap__title em {
  font-style: italic;
  color: var(--soft);
}

/* Compact variant overrides */
.cform--compact .cform__row {
  gap: 1rem;
  margin-bottom: 1rem;
}
.cform--compact .cform__field {
  margin-bottom: 1rem;
}
.cform--compact .cform__row .cform__field {
  margin-bottom: 0;
}
.cform--compact .cform__field label {
  font-size: 0.56rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.16em;
}
.cform--compact .cform__field input,
.cform--compact .cform__field select,
.cform--compact .cform__field textarea {
  padding: 0.7rem 0.85rem;
  font-size: 0.85rem;
}
.cform--compact .cform__field textarea {
  min-height: 80px;
}
.cform--compact button[type='submit'] {
  margin-top: 0.75rem;
}

@media (max-width: 560px) {
  .cform--compact .cform__row {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    margin-bottom: 0.9rem;
  }
}

/* ─── INLINE FORM (under contact details) ─────────────────── */
.cform-inline {
  margin-top: 2.75rem;
}
.cform-inline__rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}
.cform-inline__label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}
.cform-inline__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 1.75rem;
}
.cform-inline__title em {
  font-style: italic;
  color: var(--soft);
}

/* ─── EMPTY LISTING PLACEHOLDER ───────────────────────────── */
.prop-link--empty {
  cursor: default;
  opacity: 0.55;
}
.prop-link--empty:hover {
  background: var(--surf2);
}
.prop-link__img--empty {
  background: var(--surf3) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1.2rem;
  opacity: 0.55;
}
.prop-link__img--empty img {
  display: none;
}
.prop-link__name--empty {
  color: var(--muted);
}
.prop-link__tag--soft {
  color: var(--muted) !important;
  font-style: italic;
}

/* ─── PAGE START (no hero — matches about hero style) ────── */
.page-start {
  background: var(--page);
  padding-top: calc(var(--nav-h) + clamp(2.5rem, 5vw, 4.5rem));
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
  padding-left: var(--pad);
  padding-right: var(--pad);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-start__inner {
  max-width: 720px;
  margin: 0 auto;
}
.page-start__bc {
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}
.page-start__bc-line {
  width: 30px;
  height: 1px;
  background: rgba(184, 151, 58, 0.5);
}
.page-start__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.page-start__title em {
  font-style: italic;
  color: var(--soft);
}
.page-start__rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}
.page-start__sub {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--soft);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* When body has .no-hero, nav is dark from scrollY=0 (JS handles class add on load) */
body.no-hero .nav {
  background: rgba(22, 15, 5, 0.94);
  border-bottom: 1px solid rgba(184, 151, 58, 0.22);
}
body.no-hero .nav .nl,
body.no-hero .nav .logo__name,
body.no-hero .nav .logo__loc {
  text-shadow: none;
}
body.no-hero .nav .logo__name {
  color: var(--dt);
}
body.no-hero .nav .logo__loc {
  color: var(--gold);
}
body.no-hero .nav .nav__wa {
  border-color: rgba(184, 151, 58, 0.5);
  color: var(--gold-lt);
}
body.no-hero .nav .nav__wa:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184, 151, 58, 0.08);
}

/* ─── SLIM BANNER (about page) ────────────────────────────── */
.slim-banner {
  background: var(--page);
  min-height: clamp(320px, 42vh, 460px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 2rem) var(--pad) 3rem;
  border-bottom: 1px solid var(--border);
}
.slim-banner__inner {
  max-width: 720px;
}
.slim-banner__eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  font-weight: 500;
}
.slim-banner__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.slim-banner__title em {
  font-style: italic;
  color: var(--soft);
}
.slim-banner__rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}
.slim-banner__sub {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--soft);
  line-height: 1.7;
}

/* ─── DETAIL HERO (about page — scrolling detail strip) ─── */
.detail-hero {
  background: var(--dark);
  padding-top: calc(var(--nav-h) + clamp(2rem, 4vw, 3rem));
  padding-bottom: clamp(3rem, 5vw, 5rem);
  overflow: hidden;
  position: relative;
}
.detail-hero__head {
  text-align: center;
  padding: 0 var(--pad);
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}
.detail-hero__eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  font-weight: 500;
}
.detail-hero__eyebrow-line {
  width: 30px;
  height: 1px;
  background: rgba(184, 151, 58, 0.5);
}
.detail-hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.25rem;
}
.detail-hero__title em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.72);
}
.detail-hero__sub {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(240, 232, 216, 0.62);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}
.detail-hero__strip-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 4%,
    black 96%,
    transparent 100%
  );
}
.detail-hero__strip {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: detailScroll 70s linear infinite;
}
.detail-hero__strip:hover {
  animation-play-state: paused;
}
.detail-hero__item {
  flex-shrink: 0;
  width: clamp(200px, 22vw, 340px);
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.detail-hero__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.detail-hero__strip:hover .detail-hero__item img {
  transform: scale(1.04);
}
@keyframes detailScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ─── DETAIL HERO — LIGHT VARIANT (linen bg) ─────────────── */
.detail-hero--light {
  background: var(--page);
}
.detail-hero--light .detail-hero__eyebrow {
  color: var(--gold);
}
.detail-hero--light .detail-hero__eyebrow-line {
  background: rgba(184, 151, 58, 0.4);
}
.detail-hero--light .detail-hero__title {
  color: var(--text);
}
.detail-hero--light .detail-hero__title em {
  color: var(--soft);
}
.detail-hero--light .detail-hero__sub {
  color: var(--soft);
}
.detail-hero--light .detail-hero__item {
  border: 1px solid var(--border);
}

/* When about page uses light hero, nav should NOT be forced dark */
body.about-light .nav {
  background: transparent;
  border-bottom: 1px solid transparent;
}
body.about-light .nav .nl {
  color: var(--text);
  text-shadow: none;
}
body.about-light .nav .logo__name {
  color: var(--text);
  text-shadow: none;
}
body.about-light .nav .logo__loc {
  color: var(--gold);
  text-shadow: none;
}
body.about-light .nav.scrolled {
  background: rgba(22, 15, 5, 0.94);
  border-bottom: 1px solid rgba(184, 151, 58, 0.22);
}
body.about-light .nav.scrolled .nl {
  color: rgba(255, 255, 255, 0.88);
}
body.about-light .nav.scrolled .logo__name {
  color: var(--dt);
}
body.about-light .nav.scrolled .logo__loc {
  color: var(--gold);
}

/* ─── GALLERY PAGE ────────────────────────────────────────── */

/* Filter row — sticky under nav */
.gal-filter {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  position: sticky;
  top: var(--nav-h);
  z-index: 20;
}
.gal-filter__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.75rem;
}
.gal-filter__btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--soft);
  padding: 0.4rem 0;
  position: relative;
  transition: color 0.2s;
}
.gal-filter__btn:hover {
  color: var(--text);
}
.gal-filter__btn--on {
  color: var(--text);
}
.gal-filter__btn--on::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--gold);
}

/* Gallery section */
.gal-sec {
  background: var(--white);
  padding: clamp(3rem, 5vw, 5rem) 0 clamp(4rem, 6vw, 6rem);
}

/* Editorial grid — hero cell spans 2x2, rest are 1x1 */
.gal-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  grid-auto-flow: dense;
  gap: 14px;
}
@media (max-width: 1100px) {
  .gal-masonry {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
  }
}
/* Mobile rules for .gal-masonry are handled later in the file (option B: hero 2x2, rest square) */

/* Cells */
.gal-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--surf2);
  display: block;
  margin: 0;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gal-item:hover img {
  transform: scale(1.035);
}

/* Hero cell — first visible item in any view takes 2x2 (mobile handled below in fine-tuning section) */
.gal-item--hero {
  grid-column: span 2;
  grid-row: span 2;
}

/* Optional secondary sizing for breathing room (every 7th+ item breaks rhythm) - desktop only */
.gal-item--tall {
  grid-row: span 2;
}
.gal-item--wide {
  grid-column: span 2;
}

/* Hover overlay */
.gal-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 5, 2, 0) 50%, rgba(8, 5, 2, 0.75) 100%);
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 2;
  pointer-events: none;
}
.gal-item:hover::before {
  opacity: 1;
}

/* Gold "+" corner mark */
.gal-item::after {
  content: '+';
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background: rgba(8, 5, 2, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 300;
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 3;
  pointer-events: none;
}
.gal-item:hover::after {
  opacity: 1;
}

/* Caption */
/* Gallery captions — villa name + category label, fade in on hover */
.gal-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.4rem 1.5rem;
  z-index: 3;
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.35s,
    transform 0.35s;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(8, 5, 2, 0.78) 0%,
    rgba(8, 5, 2, 0.4) 60%,
    transparent 100%
  );
}
.gal-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}
.gal-item__name {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.2;
  margin-bottom: 0.25rem;
  color: #fff;
}
.gal-item__cat {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-lt);
  font-weight: 500;
}

/* Gallery placeholder cards — visible grid slots before real images are added */
.gal-placeholder {
  background: linear-gradient(135deg, rgba(196, 154, 94, 0.06) 0%, rgba(196, 154, 94, 0.12) 100%);
  border: 1.5px dashed rgba(196, 154, 94, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default !important;
  min-height: 240px;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}
.gal-placeholder:hover {
  background: linear-gradient(135deg, rgba(196, 154, 94, 0.1) 0%, rgba(196, 154, 94, 0.18) 100%);
  border-color: rgba(196, 154, 94, 0.6);
}
.gal-placeholder::after {
  display: none;
} /* hide the lightbox "+" cue on placeholders */
.gal-placeholder__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  text-align: center;
  padding: 1.5rem;
  pointer-events: none;
}
.gal-placeholder__plus {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.7;
}
.gal-placeholder__lbl {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft);
  font-weight: 500;
}

/* Signature watermark — subtle gold "LUH" mark, visible on hover */
.gal-item__wmk {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 3;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--gold-lt);
  padding: 0.3rem 0.55rem;
  background: rgba(8, 5, 2, 0.5);
  border: 1px solid rgba(205, 180, 106, 0.25);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.gal-item:hover .gal-item__wmk {
  opacity: 1;
}

/* Bottom CTA */
.gal-cta {
  background: var(--page);
  border-top: 1px solid var(--border);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

/* Lightbox */
.gal-lb {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 200;
}
.gal-lb.on {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gal-lb__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 5, 2, 0.94);
}
.gal-lb__stage {
  position: relative;
  z-index: 2;
  max-width: 92vw;
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.gal-lb__stage img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.gal-lb__cap {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 0 0.5rem;
}
.gal-lb__cap-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: 0;
  text-transform: none;
  color: #fff;
  margin-right: 0.5rem;
}
.gal-lb__cap-cat {
  color: var(--gold-lt);
}
.gal-lb__close,
.gal-lb__prev,
.gal-lb__next {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.gal-lb__close:hover,
.gal-lb__prev:hover,
.gal-lb__next:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--gold);
}
.gal-lb__close {
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  line-height: 1;
}
.gal-lb__prev,
.gal-lb__next {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 1.8rem;
}
.gal-lb__prev {
  left: 1.5rem;
}
.gal-lb__next {
  right: 1.5rem;
}
@media (max-width: 600px) {
  .gal-lb__prev,
  .gal-lb__next {
    display: none;
  }
  .gal-lb__close {
    width: 36px;
    height: 36px;
    top: 1rem;
    right: 1rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM LANDER — EDITORIAL 5-SECTION LAYOUT
   ═══════════════════════════════════════════════════════════ */

/* ─── 1. CINEMATIC HERO ──────────────────────────────────── */
.lh2 {
  position: relative;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  background: var(--dark);
}
.lh2__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  animation: lh2Drift 40s ease-in-out infinite alternate;
}
@keyframes lh2Drift {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.08) translate(-2%, -1.5%);
  }
}
.lh2__vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(8, 5, 2, 0.4) 0%,
      rgba(8, 5, 2, 0.1) 20%,
      rgba(8, 5, 2, 0) 40%,
      rgba(8, 5, 2, 0.55) 70%,
      rgba(8, 5, 2, 0.92) 100%
    ),
    linear-gradient(to right, rgba(8, 5, 2, 0.35) 0%, rgba(8, 5, 2, 0) 60%);
}
.lh2__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 0 clamp(1.5rem, 6vw, 7rem) clamp(3rem, 5vw, 4.5rem);
}
.lh2__inner {
  max-width: 840px;
  color: #fff;
  animation: heroFadeIn 1.6s ease-out both;
}
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.lh2__top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.lh2__loc-line {
  width: 50px;
  height: 1.5px;
  background: var(--gold-lt);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}
.lh2__loc {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-lt);
  font-weight: 600;
  text-shadow:
    0 1px 8px rgba(0, 0, 0, 0.5),
    0 1px 2px rgba(0, 0, 0, 0.4);
}
.lh2__kicker {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
}
.lh2__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: 1;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.lh2__title em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.78);
}
.lh2__sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.75rem;
  max-width: 560px;
}

/* Spec bar — horizontal specs on hero */
.lh2__specs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 3rem);
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.lh2__spec {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
}
.lh2__spec-v {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  color: var(--gold-lt);
  line-height: 1;
}
.lh2__spec:first-child .lh2__spec-v {
  font-style: normal;
  color: var(--gold-lt);
  letter-spacing: 0;
}
.lh2__spec-l {
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}
@media (max-width: 600px) {
  .lh2__content {
    align-items: flex-end;
    padding-bottom: 3rem;
  }
  .lh2__sub {
    margin-bottom: 2rem;
  }
  .lh2__specs {
    gap: 1rem 1.75rem;
    padding-top: 1.25rem;
  }
  .lh2__spec-v {
    font-size: 1.15rem;
  }
  .lh2__spec:first-child .lh2__spec-v {
    font-size: 1.15rem;
  }
  .lh2__spec-l {
    font-size: 0.52rem;
  }
}

/* ─── 2. OVERVIEW ─────────────────────────────────────────── */
.ov {
  background: var(--white);
}
.ov__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
@media (max-width: 900px) {
  .ov__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}
.ov__photo {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.ov__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ov__text {
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
}
.ov__eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.ov__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1.75rem;
  color: var(--text);
}
.ov__title em {
  font-style: italic;
  color: var(--soft);
}
.ov__lead {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.ov__body {
  font-size: 0.92rem;
  color: var(--soft);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}
.ov__facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}
@media (max-width: 480px) {
  .ov__facts {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
.ov__fact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.ov__fact-v {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
}
.ov__fact-l {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft);
  font-weight: 500;
}

/* ─── 3. VIGNETTES (alternating photo + text) ──────────── */
.vg {
  background: var(--white);
}
.vg__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 520px;
  border-top: 1px solid var(--border);
}
@media (max-width: 900px) {
  .vg__item {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .vg__item--photo-r .vg__text {
    order: 2;
  }
  .vg__item--photo-r .vg__photo {
    order: 1;
  }
}
.vg__photo {
  overflow: hidden;
  min-height: 420px;
  height: 100%;
}
.vg__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s ease;
}
.vg__item:hover .vg__photo img {
  transform: scale(1.03);
}
.vg__text {
  padding: clamp(3rem, 6vw, 5.5rem) clamp(2rem, 5vw, 5rem);
  max-width: 560px;
}
.vg__label {
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.vg__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.2vw, 2.75rem);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.vg__title em {
  font-style: italic;
  color: var(--soft);
}
.vg__text p:last-child {
  font-size: 0.95rem;
  color: var(--soft);
  line-height: 1.85;
}

/* ─── 4. PRACTICAL (gallery + specs + location + video) ─── */
.pr {
  background: var(--page);
  padding: clamp(4rem, 7vw, 7rem) 0;
}
.pr__section {
  margin-bottom: clamp(4rem, 7vw, 6rem);
}
.pr__section:last-child {
  margin-bottom: 0;
}
.pr__head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.pr__eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
  font-weight: 500;
}
.pr__h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.1;
  color: var(--text);
}
.pr__h2 em {
  font-style: italic;
  color: var(--soft);
}
.pr__section--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
}
.pr__section--split .pr__head {
  text-align: left;
  margin-bottom: 0;
}
@media (max-width: 860px) {
  .pr__section--split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Location grid — lighter variant */
.loc-grid2 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--border);
  padding: 1px;
  border: 1px solid var(--border);
}
@media (max-width: 1000px) {
  .loc-grid2 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 640px) {
  .loc-grid2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.loc2 {
  background: var(--white);
  padding: 1.75rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.loc2__t {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  color: var(--gold);
  line-height: 1;
}
.loc2__l {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--soft);
  font-weight: 500;
}

/* ─── 5. CLOSE (pledge + FAQ + CTA + signature) ─────────── */
.cls {
  background: var(--white);
}
.cls__top {
  padding: clamp(4rem, 6vw, 6rem) 0;
  border-top: 1px solid var(--border);
}
.cls__faq {
  background: var(--page);
  padding: clamp(3rem, 5vw, 4rem) 0 clamp(3.5rem, 6vw, 5rem);
  border-top: 1px solid var(--border);
}
.cls__cta {
  padding: clamp(4rem, 7vw, 6rem) 0;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.cls__cta-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}
.cls__cta-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1rem;
}
.cls__cta-title em {
  font-style: italic;
  color: var(--soft);
}
.cls__cta-sub {
  font-size: 0.95rem;
  color: var(--soft);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.cls__cta-btns {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .cls__cta-btns {
    gap: 0.65rem;
  }
}
.cls__sig {
  background: var(--dark);
  padding: clamp(2.5rem, 4vw, 3.5rem) 0;
}
.cls__sig-label {
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 0.75rem;
}
.cls__sig-name {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  color: #fff;
  line-height: 1;
  transform: rotate(-2deg);
  display: inline-block;
  margin-bottom: 0.5rem;
}
.cls__sig-role {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240, 232, 216, 0.6);
  margin-top: 0.65rem;
}

/* ─── FAQ ACCORDION ───────────────────────────────────────── */
.faq {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}
.faq__i {
  border-bottom: 1px solid var(--border);
}
.faq__i summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text);
  transition: color 0.2s;
}
.faq__i summary::-webkit-details-marker {
  display: none;
}
.faq__i summary::after {
  content: '+';
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  transition:
    background 0.2s,
    color 0.2s;
}
.faq__i[open] summary::after {
  content: '−';
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.faq__i summary:hover {
  color: var(--gold-dk);
}
.faq__b {
  padding: 0 0 1.75rem;
  color: var(--soft);
  font-size: 0.9rem;
  line-height: 1.85;
  max-width: 620px;
}

/* ─── STICKY PRICE BAR (appears past hero) ───────────────── */
/* ─── LOCATION SPLIT (map + stats grid) ──────────────────── */
.loc-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .loc-split {
    grid-template-columns: 1fr;
  }
}
.loc-split__map {
  position: relative;
  min-height: 380px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--surf2);
}
.loc-split__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(0.25) contrast(1.02);
}
.loc-split .loc-grid2 {
  grid-template-columns: repeat(2, 1fr);
  align-content: stretch;
}
.loc-split .loc2 {
  padding: 1.25rem 0.75rem;
}
@media (max-width: 900px) {
  .loc-split__map {
    min-height: 300px;
  }
  .loc-split .loc-grid2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .loc-split .loc-grid2 {
    grid-template-columns: 1fr;
  }
}

/* ─── STICKY BAR — bulletproof fix ──────────────────────── */
/* Override any previous .sb rules */
/* ─── STICKY CTA — floating pill, bottom-left corner ─────── */
/* ─── STICKY PRIVATE CONSULTATION CTA — bottom-left floating pill ──── */
.sticky-bar {
  position: fixed;
  left: clamp(1rem, 2.5vw, 2rem);
  bottom: clamp(1rem, 2.5vw, 1.75rem);
  right: auto;
  background: rgba(22, 15, 5, 0.95);
  border: 1px solid rgba(184, 151, 58, 0.4);
  border-radius: 8px;
  padding: 1rem 1.1rem 1rem 1.4rem;
  z-index: 95;
  transform: translateY(140%);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
    opacity 0.3s ease,
    border-color 0.3s,
    background 0.3s,
    box-shadow 0.3s;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  max-width: calc(100vw - 2rem);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  cursor: pointer;
  min-width: 280px;
}
.sticky-bar.on {
  transform: translateY(0);
  opacity: 1;
}
.sticky-bar:hover {
  border-color: var(--gold-lt);
  background: rgba(28, 20, 8, 0.97);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(184, 151, 58, 0.15);
}
.sticky-bar:hover .sticky-bar__arr {
  transform: translateX(5px);
  color: #fff;
}
.sticky-bar:hover .sticky-bar__main {
  color: var(--gold-lt);
}

.sticky-bar__txt {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
}
.sticky-bar__eyebrow {
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-lt);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-bar__main {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.18rem;
  color: #fff;
  line-height: 1.15;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.25s;
}
.sticky-bar__attr {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.2;
  margin-top: 0.15rem;
  white-space: nowrap;
}
.sticky-bar__arr {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-lt);
  width: 32px;
  height: 32px;
  border: 1px solid rgba(184, 151, 58, 0.35);
  border-radius: 50%;
  transition:
    transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1),
    color 0.25s,
    border-color 0.25s,
    background 0.25s;
}
.sticky-bar:hover .sticky-bar__arr {
  border-color: var(--gold-lt);
  background: rgba(184, 151, 58, 0.15);
}

@media (max-width: 520px) {
  .sticky-bar {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.9rem 1rem 0.9rem 1.15rem;
    min-width: 0;
    max-width: none;
    gap: 0.9rem;
  }
  .sticky-bar__eyebrow {
    font-size: 0.56rem;
    letter-spacing: 0.22em;
  }
  .sticky-bar__main {
    font-size: 1.08rem;
  }
  .sticky-bar__attr {
    font-size: 0.82rem;
  }
  .sticky-bar__arr {
    width: 28px;
    height: 28px;
  }
  .sticky-bar__arr svg {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 380px) {
  .sticky-bar__main {
    font-size: 1rem;
  }
  .sticky-bar__attr {
    font-size: 0.76rem;
  }
}

/* ─── WALKTHROUGH (dedicated video section) ──────────────── */
.wt {
  background: var(--white);
  padding: clamp(4rem, 7vw, 7rem) 0 clamp(4rem, 7vw, 7rem);
  position: relative;
  border-bottom: 1px solid var(--border);
}
.wt__head {
  text-align: center;
  padding: 0 var(--pad);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.wt__eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}
.wt__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1rem;
}
.wt__title em {
  font-style: italic;
  color: var(--soft);
}
.wt__sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--soft);
  line-height: 1.7;
}
.wt__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark);
}
.wt__video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 1.2s ease,
    filter 0.4s ease;
}
.wt__video:hover img {
  transform: scale(1.02);
  filter: brightness(0.85);
}
.wt__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(8, 5, 2, 0.1) 0%, rgba(8, 5, 2, 0.3) 100%);
  pointer-events: none;
}
.wt__playbtn {
  pointer-events: auto;
  width: clamp(80px, 10vw, 120px);
  height: clamp(80px, 10vw, 120px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s;
}
.wt__playbtn::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  animation: playPulse 2.4s ease-in-out infinite;
}
@keyframes playPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0;
    transform: scale(1.15);
  }
}
.wt__video:hover .wt__playbtn {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.08);
}

/* ═══════════════════════════════════════════════════════════
   JOMTIEN LANDER FIXES — Apr 2026
   ═══════════════════════════════════════════════════════════ */

/* ─── USD price style in hero ─── */
.lh2__spec--price {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem !important;
}
.lh2__spec-usd {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.02em;
  line-height: 1;
}
@media (max-width: 600px) {
  .lh2__spec-usd {
    font-size: 0.78rem;
  }
}

/* ─── Walkthrough video — cap size ─── */
.wt__video {
  max-width: 980px;
  margin: 0 auto;
}

/* ─── Floor plan clickable ─── */
.fp__img-clickable {
  cursor: zoom-in;
  transition: opacity 0.18s;
}
.fp__img-clickable:hover {
  opacity: 0.92;
}
.fp__frame {
  position: relative;
}
.fp__frame::after {
  content: '⤢';
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(22, 15, 5, 0.75);
  color: var(--gold-lt);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  pointer-events: none;
  border: 1px solid rgba(184, 151, 58, 0.35);
  transition: background 0.2s;
  z-index: 2;
}
.fp__frame:hover::after {
  background: var(--gold);
  color: #fff;
}

/* ─── Lightbox — variant for floor plans (fit-contain, white bg) ─── */
.lb.lb--plan .lb__img {
  background: #fff;
  padding: 1rem;
  max-height: 90vh;
  max-width: 96vw;
  object-fit: contain;
}

/* ═══════════════════════════════════════════════════════════
   COLOUR FLOW OVERHAUL — dramatic pledge on dark
   Final flow:
   1. Hero           → DARK (photo vignette)
   2. Overview       → white
   3. Practical      → linen (gallery/specs/location)
   4. Walkthrough    → white
   5. Pledge         → DARK (dramatic moment)
   6. FAQ            → white
   7. Final CTA      → linen
   8. Footer         → DARK
   ═══════════════════════════════════════════════════════════ */

/* Pledge on dark (override default linen bg in close block) */
.cls__top {
  background: var(--dark);
  padding: clamp(5rem, 9vw, 8rem) 0;
  border-top: none;
  color: #fff;
  position: relative;
}
.cls__top .wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.cls__top .pledge__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
  text-align: left;
  max-width: none;
}
.cls__top .pledge__portrait {
  width: clamp(140px, 16vw, 200px);
  height: clamp(140px, 16vw, 200px);
  border: 1px solid rgba(184, 151, 58, 0.4);
  box-shadow:
    0 0 0 6px rgba(255, 255, 255, 0.02),
    0 12px 30px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}
.cls__top .pledge__text {
  text-align: left;
  flex: 1;
  max-width: 600px;
}
.cls__top .pledge__rule {
  width: 40px;
  height: 1px;
  background: var(--gold-lt);
  margin: 0 0 1.5rem;
  opacity: 0.7;
}
.cls__top .pledge__label {
  color: var(--gold-lt);
  margin-bottom: 1.25rem;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
}
.cls__top .pledge__quote {
  color: #fff;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  line-height: 1.5;
  margin-bottom: 2rem;
  letter-spacing: -0.005em;
}
.cls__top .pledge__sig {
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin-bottom: 0.85rem;
  transform: rotate(-2deg);
  transform-origin: left center;
  display: inline-block;
}
.cls__top .pledge__name {
  color: rgba(240, 232, 216, 0.58);
  letter-spacing: 0.24em;
  font-size: 0.64rem;
}
@media (max-width: 700px) {
  .cls__top .pledge__inner {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .cls__top .pledge__text {
    text-align: center;
  }
  .cls__top .pledge__rule {
    margin: 0 auto 1.5rem;
  }
  .cls__top .pledge__sig {
    transform-origin: center;
  }
}

/* FAQ → white (was linen) */
.cls__faq {
  background: var(--white);
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  border-top: none;
}

/* Final CTA → linen (was white), with bottom padding for sticky bar clearance */
.cls__cta {
  background: var(--page);
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(5.5rem, 8vw, 7rem);
  border-top: 1px solid var(--border);
}

/* Make sure final CTA copy is readable on linen */
.cls__cta-title {
  color: var(--text);
}
.cls__cta-title em {
  color: var(--soft);
}
.cls__cta-sub {
  color: var(--soft);
}

/* Body padding-bottom so sticky bar doesn't cover content when scrolled all the way down */
@media (max-width: 620px) {
  body {
    scroll-padding-bottom: 90px;
  }
}

/* ─── TRANSITION GRADIENT — walkthrough → pledge bridge ──── */
.chapter-break {
  background: linear-gradient(180deg, var(--white) 0%, var(--page) 40%, var(--dark) 100%);
  height: clamp(100px, 12vh, 160px);
  width: 100%;
}

/* ═══════════════════════════════════════════════════════════
   LISTING LANDER — POST-PLEDGE-REMOVAL FIXES (Apr 2026)
   ═══════════════════════════════════════════════════════════ */

/* Floor plans — full width treatment */
.fp--full {
  max-width: 880px;
  margin: 0 auto;
}
.fp--full .fp__frame {
  aspect-ratio: 4 / 3;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  position: relative;
}
.fp--full .fp__frame img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.fp--full .fp__tabs {
  margin-bottom: 1rem;
}
@media (max-width: 700px) {
  .fp--full .fp__frame {
    aspect-ratio: 1 / 1;
    padding: 1rem;
  }
}

/* Specs as 2-col list (8 items) */
.specs-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (max-width: 640px) {
  .specs-list {
    grid-template-columns: 1fr;
  }
}
.specs-list li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.5rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.specs-list li:nth-child(odd) {
  border-right: 1px solid var(--border);
}
@media (max-width: 640px) {
  .specs-list li:nth-child(odd) {
    border-right: none;
  }
}
.specs-list__l {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.specs-list__v {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--text);
  line-height: 1.3;
}

/* Colour flow correction — pledge gone */
/* Final flow:
   Hero dark → Overview white → Practical linen → Walkthrough white → FAQ linen → Final CTA white → Footer dark
*/

/* Cls section is now just FAQ + CTA, no top dark block */
.cls {
  background: var(--white);
}

/* FAQ stays linen as before — no change */

/* Final CTA → white (was linen earlier) so FAQ linen → CTA white → Footer dark has clear breaks */
.cls__cta {
  background: var(--white);
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(5.5rem, 8vw, 7rem);
  border-top: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════════════════
   COLOUR SCHEME OPTION A — Dark Location Moment
   Final flow:
   Hero dark → Overview white → Practical linen → Location DARK → Walkthrough white → FAQ linen → Final CTA white → Footer dark
   ═══════════════════════════════════════════════════════════ */

/* Practical → linen */
.pr {
  background: var(--page);
}

/* Location → DARK WALNUT (dramatic moment) */
.loc-sec {
  background: var(--dark);
  padding: clamp(4rem, 7vw, 7rem) 0;
  color: #fff;
}
.loc-sec .pr__head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.loc-sec .pr__eyebrow {
  color: var(--gold-lt);
}
.loc-sec .pr__h2 {
  color: #fff;
}
.loc-sec .pr__h2 em {
  color: rgba(255, 255, 255, 0.72);
}

/* Location stat cards — refined for dark bg */
.loc-sec .loc-grid2 {
  background: rgba(184, 151, 58, 0.18);
  border: 1px solid rgba(184, 151, 58, 0.18);
}
.loc-sec .loc2 {
  background: var(--dark);
}
.loc-sec .loc2__t {
  color: var(--gold-lt);
}
.loc-sec .loc2__l {
  color: rgba(240, 232, 216, 0.62);
}
.loc-sec .loc-split__map {
  border-color: rgba(184, 151, 58, 0.25);
}

/* Walkthrough → white */
.wt {
  background: var(--white);
  border-bottom: none;
}

/* FAQ → linen */
.cls__faq {
  background: var(--page);
  border-top: none;
}

/* Final CTA → white */
.cls__cta {
  background: var(--white);
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(5.5rem, 8vw, 7rem);
  border-top: 1px solid var(--border);
}

/* ─── SPECS — Editorial Split (4 marquee + 4 list) ───────── */
.specs-edit {
  max-width: 1080px;
  margin: 0 auto;
}

/* Marquee row — 4 big numbers */
.specs-edit__marquee {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(2.5rem, 4vw, 3.5rem) 0;
}
.specs-edit__marquee--row2 {
  border-top: none;
}
@media (max-width: 760px) {
  .specs-edit__marquee {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 0;
    padding: 2rem 0;
  }
}
.specs-edit__big {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  padding: 0 1rem;
  position: relative;
}
.specs-edit__big + .specs-edit__big::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: var(--border);
}
@media (max-width: 760px) {
  .specs-edit__big:nth-child(odd) + .specs-edit__big::before {
    display: block;
  }
  .specs-edit__big:nth-child(even) + .specs-edit__big::before,
  .specs-edit__big:nth-child(2)::before {
    display: none;
  }
}
.specs-edit__big-v {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.specs-edit__big-u {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  color: var(--soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.specs-edit__big-l {
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 500;
}

/* Tidy list — 4 supporting items */
.specs-edit__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 0;
}
@media (max-width: 640px) {
  .specs-edit__list {
    grid-template-columns: 1fr;
  }
}
.specs-edit__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.15rem 1.5rem;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.specs-edit__row:nth-child(odd) {
  border-right: 1px solid var(--border);
}
@media (max-width: 640px) {
  .specs-edit__row:nth-child(odd) {
    border-right: none;
  }
}
.specs-edit__row-l {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--soft);
  font-weight: 500;
  flex-shrink: 0;
}
.specs-edit__row-v {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: var(--text);
  text-align: right;
}

/* ─── SIGNATURE IMAGE (replaces Great Vibes font) ────────── */
.pledge__sig-img {
  display: block;
  width: clamp(200px, 28vw, 280px);
  height: auto;
  margin: 0 0 0.5rem;
  opacity: 0.95;
}
@media (max-width: 700px) {
  .pledge__sig-img {
    margin: 0 auto 0.5rem;
  }
}

/* ─── FOOTER CONTACT — icon-led list ─────────────────────── */
.f-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.f-contact li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.82rem;
  line-height: 1.4;
}
.f-contact__ic {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-lt);
  opacity: 0.8;
  transition:
    opacity 0.2s,
    color 0.2s;
}
.f-contact li:hover .f-contact__ic {
  opacity: 1;
  color: var(--gold);
}
.f-contact a {
  color: rgba(240, 232, 216, 0.78);
  text-decoration: none;
  transition: color 0.2s;
}
.f-contact a:hover {
  color: #fff;
}

/* ─── FOOTER LINE tag (replaces icon) ────────────────────── */
.f-contact__tag {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.56rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: var(--gold-lt);
  opacity: 0.85;
  transition:
    opacity 0.2s,
    color 0.2s;
}
.f-contact li:hover .f-contact__tag {
  opacity: 1;
  color: var(--gold);
}

/* ─── UNDER CONSTRUCTION TAG (hero spec area) ────────────── */
.uc-tag-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.25rem;
  padding: 0.6rem 1rem;
  background: rgba(22, 15, 5, 0.55);
  border: 1px solid rgba(184, 151, 58, 0.45);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.01em;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.uc-tag-hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-lt);
  box-shadow: 0 0 8px var(--gold-lt);
  animation: ucDot 1.6s ease-in-out infinite;
}
@keyframes ucDot {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* ─── UNDER CONSTRUCTION CALLOUT (overview text area) ────── */
.uc-callout {
  border-left: 2px solid var(--gold);
  padding: 1rem 0 1rem 1.25rem;
  margin-bottom: 1.75rem;
  background: rgba(184, 151, 58, 0.04);
}
.uc-callout__l {
  font-size: 0.56rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.uc-callout__t {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 0.65rem;
}
.uc-callout__b {
  font-size: 0.85rem;
  color: var(--soft);
  line-height: 1.7;
  margin: 0;
}

/* ─── GALLERY EMPTY TILES ─────────────────────────────────── */
.gal__i--empty {
  background: var(--page);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  cursor: default !important;
  transition: none !important;
}
.gal__i--empty:hover {
  transform: none !important;
}
.gal__i--empty span {
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* ─── FLOOR PLAN PLACEHOLDER ──────────────────────────────── */
.fp__placeholder {
  aspect-ratio: 4 / 3;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.fp__placeholder::before {
  content: '⌗';
  position: absolute;
  font-size: 5rem;
  color: var(--border2);
  font-weight: 200;
  opacity: 0.5;
}
.fp__placeholder span {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--soft);
  background: var(--white);
  padding: 0.5rem 1.25rem;
}

/* ─── SOLD VILLA — hero spec bar SOLD badge ─────────────── */
.lh2__spec--sold {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem !important;
}
.lh2__sold-badge {
  display: inline-block;
  background: #8b3a3a;
  color: #fff;
  padding: 0.5rem 1.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  box-shadow: 0 2px 12px rgba(139, 58, 58, 0.4);
}
@media (max-width: 600px) {
  .lh2__sold-badge {
    font-size: 0.58rem;
    padding: 0.4rem 0.85rem;
  }
}

/* ─── SOLD CALLOUT (in Overview text area) ──────────────── */
.sold-callout {
  border-left: 2px solid #8b3a3a;
  padding: 1rem 0 1rem 1.25rem;
  margin-bottom: 1.75rem;
  background: rgba(139, 58, 58, 0.04);
}
.sold-callout__l {
  font-size: 0.56rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #8b3a3a;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.sold-callout__t {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 0.65rem;
}
.sold-callout__b {
  font-size: 0.85rem;
  color: var(--soft);
  line-height: 1.7;
  margin: 0;
}

/* ─── CONTACT LISTING STATUS PILLS (inline tags) ─────────── */
.prop-link__status {
  display: inline-block;
  font-size: 0.54rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.15rem 0.45rem;
  margin-right: 0.15rem;
  border-radius: 2px;
  vertical-align: 1px;
}
.prop-link__status--available {
  background: var(--gold);
  color: #fff;
}
.prop-link__status--soon {
  background: rgba(22, 15, 5, 0.85);
  color: var(--gold-lt);
}
.prop-link__status--sold {
  background: #8b3a3a;
  color: #fff;
}

/* ─── RENDER vs REALITY (Trust moment on under-construction lander) */
.rr {
  background: var(--dark);
  padding: clamp(4rem, 7vw, 7rem) 0;
  color: #fff;
}
.rr__head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.rr__eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1rem;
  font-weight: 500;
}
.rr__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1rem;
}
.rr__title em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.72);
}
.rr__sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}
.rr .compare {
  max-width: 1100px;
  margin: 0 auto;
}

/* ─── COMPARE SLIDER (used in Costera + About) — global ─── */
.compare {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.compare__after {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.compare__after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.compare__before {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 2;
}
.compare__before img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  clip-path: inset(0 50% 0 0);
}
.compare__label {
  position: absolute;
  bottom: 1.25rem;
  z-index: 5;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  background: rgba(8, 7, 5, 0.65);
  color: rgba(255, 255, 255, 0.9);
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.compare__label--l {
  left: 1rem;
}
.compare__label--r {
  right: 1rem;
}
.compare__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 44px;
  pointer-events: none;
  z-index: 10;
}
.compare__line {
  flex: 1;
  width: 2px;
  background: rgba(255, 255, 255, 0.8);
}
.compare__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}
@media (max-width: 600px) {
  .compare {
    aspect-ratio: 4/3;
  }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE FOUNDATION PASS — comprehensive responsive fixes
   ═══════════════════════════════════════════════════════════ */

/* ─── 1. TAP TARGETS — minimum 44x44 (Apple HIG) ────────── */

/* Hamburger - bigger tap target on mobile */
@media (max-width: 860px) {
  .hbg {
    padding: 12px 8px;
    margin-right: -8px;
  }
  .hbg span {
    width: 24px;
    height: 1.75px;
  }
}

/* Drawer links - bigger tap targets */
@media (max-width: 860px) {
  .drawer a {
    padding: 1.4rem 0;
    font-size: 0.82rem;
  }
}

/* Button minimum sizes on mobile */
@media (max-width: 600px) {
  .btn {
    padding: 1rem 1.75rem;
    min-height: 46px;
    font-size: 0.58rem;
  }
}

/* Tab buttons - horizontal scroll on small screens */
@media (max-width: 640px) {
  .tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    margin: 0 calc(var(--pad) * -1) 2rem;
    padding: 0 var(--pad);
    scrollbar-width: none;
  }
  .tabs::-webkit-scrollbar {
    display: none;
  }
  .tab {
    padding: 1rem 1.25rem 0.9rem;
    font-size: 0.62rem;
    flex-shrink: 0;
    white-space: nowrap;
  }
}

/* ─── 2. NAV — better mobile transition ────────────────────── */
@media (max-width: 860px) {
  .nav__row {
    padding: 0 var(--pad);
  }
  .logo__name {
    font-size: 1rem;
  }
  .logo__loc {
    font-size: 0.56rem;
  }
  .lang {
    display: none;
  }
}

/* Drawer language switcher should be visible inside drawer */
.drawer-lang {
  margin: 2rem 0 1rem;
}

/* ─── 3. HERO LH2 — mobile readability ─────────────────────── */
@media (max-width: 600px) {
  .lh2 {
    min-height: 100svh;
  }
  .lh2__content {
    padding: 0 1.25rem 2.5rem;
    align-items: flex-end;
  }
  .lh2__inner {
    width: 100%;
  }
  .lh2__top {
    margin-bottom: 1.25rem;
  }
  .lh2__loc-line {
    width: 32px;
    height: 1.5px;
  }
  .lh2__loc {
    font-size: 0.62rem;
    letter-spacing: 0.26em;
  }
  .lh2__kicker {
    font-size: 0.92rem;
    margin-bottom: 0.85rem;
  }
  .lh2__title {
    font-size: clamp(2.6rem, 12vw, 4.5rem);
    line-height: 0.98;
    margin-bottom: 1rem;
  }
  .lh2__sub {
    font-size: 0.96rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }
  .lh2__specs {
    gap: 0.65rem;
    padding-top: 1rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
  }
  .lh2__spec--price {
    grid-column: 1 / -1; /* price spans full width on its own row */
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 0.35rem;
  }
  .lh2__spec {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .lh2__spec-v {
    font-size: 1.55rem;
  }
  .lh2__spec--price .lh2__spec-v {
    font-size: 2.1rem;
  }
  .lh2__spec:first-child .lh2__spec-v {
    font-size: 2.1rem;
  }
  .lh2__spec-l {
    font-size: 0.56rem;
    letter-spacing: 0.18em;
    white-space: nowrap;
  }
  .lh2__spec-usd {
    font-size: 0.82rem;
    opacity: 0.78;
  }
  .uc-tag-hero {
    margin-top: 0.85rem;
    padding: 0.5rem 0.8rem;
    font-size: 0.78rem;
  }
}

/* Smaller phones (<400px) — extra tightening */
@media (max-width: 400px) {
  .lh2__title {
    font-size: clamp(2.3rem, 13vw, 3.8rem);
  }
  .lh2__sub {
    font-size: 0.9rem;
  }
  .lh2__specs {
    gap: 0.5rem;
  }
  .lh2__spec-v {
    font-size: 1.4rem;
  }
  .lh2__spec--price .lh2__spec-v {
    font-size: 1.85rem;
  }
  .lh2__spec-l {
    font-size: 0.52rem;
    letter-spacing: 0.14em;
  }
}

/* ─── 4. STICKY BAR — mobile placement ─────────────────────── */
@media (max-width: 480px) {
  .sticky-bar {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
    max-width: none;
    padding: 0.6rem 0.65rem 0.6rem 0.85rem;
  }
  .sticky-bar__wrap {
    justify-content: space-between;
    width: 100%;
  }
  .sticky-bar__name {
    font-size: 0.82rem;
  }
  .sticky-bar__price {
    font-size: 0.58rem;
  }
  .sticky-bar__btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.5rem;
    min-height: 38px;
  }
}

/* ─── 5. OVERVIEW SPLIT — mobile stack ─────────────────────── */
@media (max-width: 900px) {
  .ov__photo {
    min-height: 280px;
    max-height: 360px;
  }
  .ov__text {
    padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 5vw, 2.5rem);
  }
  .ov__title {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
  }
  .ov__lead {
    font-size: 1rem;
    line-height: 1.65;
  }
  .ov__body {
    font-size: 0.88rem;
    line-height: 1.75;
    margin-bottom: 1.75rem;
  }
  .ov__facts {
    gap: 1rem;
    padding-top: 1.25rem;
  }
  .ov__fact-v {
    font-size: 1.4rem;
  }
  .ov__fact-l {
    font-size: 0.54rem;
  }
}
@media (max-width: 480px) {
  .ov__facts {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

/* ─── 6. SPECS EDITORIAL — mobile responsive ───────────────── */
@media (max-width: 640px) {
  .specs-edit__big-v {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }
  .specs-edit__big-l {
    font-size: 0.52rem;
    letter-spacing: 0.2em;
  }
  .specs-edit__big {
    padding: 0 0.5rem;
    gap: 0.55rem;
  }
  .specs-edit__big-u {
    font-size: 0.7rem;
  }
  .specs-edit__marquee {
    padding: 1.5rem 0;
  }
  /* Thai pages: keep consistent smaller size on mobile too */
  html[lang='th'] .specs-edit__big-v {
    font-size: clamp(1.2rem, 5.5vw, 1.8rem);
  }
  html[lang='th'] .specs-edit__big-l {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
  }
}

/* ─── 7. FLOOR PLAN — mobile aspect ratio ──────────────────── */
@media (max-width: 600px) {
  .fp--full .fp__frame {
    aspect-ratio: 4/5;
    padding: 0.75rem;
  }
  .fp__tabs {
    gap: 0.5rem;
  }
  .fp__tab {
    padding: 0.5rem 1rem;
    font-size: 0.58rem;
    min-height: 38px;
  }
  .fp__frame::after {
    width: 28px;
    height: 28px;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 0.85rem;
  }
}

/* ─── 8. LOCATION SECTION — mobile reflow ──────────────────── */
@media (max-width: 900px) {
  .loc-split {
    gap: 1rem;
  }
  .loc-split__map {
    min-height: 260px;
  }
}
@media (max-width: 600px) {
  .loc-split__map {
    min-height: 220px;
  }
  .loc-sec .loc-grid2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .loc2 {
    padding: 1rem 0.65rem;
    gap: 0.25rem;
  }
  .loc2__t {
    font-size: 1.25rem;
  }
  .loc2__l {
    font-size: 0.52rem;
    letter-spacing: 0.14em;
  }
}

/* ─── 9. WALKTHROUGH — mobile sizing ──────────────────────── */
@media (max-width: 600px) {
  .wt {
    padding: 3rem 0;
  }
  .wt__head {
    margin-bottom: 1.75rem;
  }
  .wt__title {
    font-size: 2rem;
  }
  .wt__sub {
    font-size: 0.92rem;
  }
  .wt__playbtn {
    width: 64px;
    height: 64px;
  }
}

/* ─── 10. RENDER vs REALITY — mobile ──────────────────────── */
@media (max-width: 600px) {
  .rr {
    padding: 3rem 0;
  }
  .rr__head {
    margin-bottom: 1.75rem;
  }
  .rr__title {
    font-size: 1.85rem;
  }
  .rr__sub {
    font-size: 0.9rem;
  }
  .compare__btn {
    width: 38px;
    height: 38px;
  }
  .compare__label {
    font-size: 0.5rem;
    padding: 0.3rem 0.65rem;
    bottom: 0.85rem;
  }
}

/* ─── 11. FAQ — mobile tap targets ────────────────────────── */
@media (max-width: 600px) {
  .faq__i summary {
    padding: 1.25rem 0;
    gap: 1rem;
    font-size: 1rem;
  }
  .faq__i summary::after {
    width: 32px;
    height: 32px;
    font-size: 1.05rem;
  }
  .faq__b {
    font-size: 0.85rem;
    padding-bottom: 1.5rem;
  }
}

/* ─── 12. FINAL CTA — mobile sizing ───────────────────────── */
@media (max-width: 600px) {
  .cls__cta {
    padding: 3rem 0 5rem;
  }
  .cls__cta-title {
    font-size: 1.85rem;
    line-height: 1.2;
  }
  .cls__cta-sub {
    font-size: 0.88rem;
  }
}

/* ─── 13. CONTACT FORM — mobile inputs ────────────────────── */
@media (max-width: 700px) {
  .form input,
  .form textarea,
  .form select {
    font-size: 16px !important; /* prevent iOS zoom */
    padding: 0.85rem 1rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .form button {
    width: 100%;
  }
}

/* Listings on contact - mobile */
@media (max-width: 700px) {
  .prop-link {
    padding: 0.85rem 1rem;
    gap: 0.85rem;
  }
  .prop-link__img {
    width: 56px;
    height: 56px;
  }
  .prop-link__name {
    font-size: 1rem;
  }
  .prop-link__tag {
    font-size: 0.7rem;
  }
}

/* ─── 14. CARDS GRID — mobile rhythm ──────────────────────── */
@media (max-width: 540px) {
  .card {
    margin-bottom: 0;
  }
  .card__b {
    padding: 1.25rem 1rem 1.5rem;
  }
  .card__name {
    font-size: 1.5rem;
  }
  .card__loc {
    font-size: 0.68rem;
  }
  .card__specs {
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  .card__spec {
    font-size: 0.9rem;
  }
  .card__price {
    font-size: 1.45rem;
  }
}

/* Card sub-tag (Under Construction · Nov 15) — readable on mobile */
@media (max-width: 480px) {
  .card__sub-tag {
    font-size: 0.48rem;
    padding: 0.28rem 0.55rem;
    letter-spacing: 0.1em;
  }
}

/* ─── 15. GALLERY GRID — mobile ───────────────────────────── */
@media (max-width: 480px) {
  .gal {
    gap: 3px;
  }
  .gal__i--empty span {
    font-size: 0.5rem;
    letter-spacing: 0.2em;
  }
}

/* ─── 16. FOOTER — mobile clean ───────────────────────────── */
@media (max-width: 600px) {
  .footer {
    padding: 3rem 0 5rem;
  }
  .footer__g {
    gap: 2rem;
  }
  .f-name {
    font-size: 1.25rem;
  }
  .f-ht {
    font-size: 0.56rem;
    margin-bottom: 1rem;
  }
  .f-links li,
  .f-c p:not(.f-ht) {
    font-size: 0.82rem;
  }
  .footer__bot {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
}

/* ─── 17. PROPERTY LINK STATUS pills (contact page) — mobile ─ */
@media (max-width: 480px) {
  .prop-link__status {
    font-size: 0.48rem;
    padding: 0.12rem 0.38rem;
    letter-spacing: 0.14em;
  }
}

/* ─── 18. BREADCRUMB — mobile compact ─────────────────────── */
@media (max-width: 600px) {
  .bc {
    font-size: 0.58rem;
    padding: 1rem var(--pad);
  }
}

/* ─── 19. SOLD/UC CALLOUTS — mobile ───────────────────────── */
@media (max-width: 600px) {
  .uc-callout,
  .sold-callout {
    padding: 0.85rem 0 0.85rem 1rem;
    margin-bottom: 1.5rem;
  }
  .uc-callout__t,
  .sold-callout__t {
    font-size: 1rem;
  }
  .uc-callout__b,
  .sold-callout__b {
    font-size: 0.82rem;
    line-height: 1.65;
  }
}

/* ─── 20. SOLD HERO BADGE — mobile ───────────────────────── */
@media (max-width: 480px) {
  .lh2__sold-badge {
    font-size: 0.56rem;
    padding: 0.35rem 0.75rem;
    letter-spacing: 0.26em;
  }
}

/* ─── 21. PREVENT iOS auto-zoom on form inputs ──────────── */
input,
textarea,
select {
  font-size: 16px;
}

/* ─── 22. Tap-friendly social icons in footer ────────────── */
@media (max-width: 600px) {
  .f-contact li {
    padding: 0.4rem 0;
    min-height: 36px;
    align-items: center;
  }
  .f-contact a {
    font-size: 0.88rem;
  }
}

/* ─── 23. Smooth scroll-padding for nav offset ──────────── */
html {
  scroll-padding-top: calc(var(--nav-h) + 1rem);
}

/* ─── 24. Body bottom-padding on mobile so sticky bar doesn't hide content ─── */
@media (max-width: 600px) {
  /* Sticky bar sits at bottom-left; on listing pages give the footer extra
   bottom padding so the dark footer fills the visible space (instead of
   showing the page background through body's padding-bottom).  */
  @media (max-width: 600px) {
    body.has-sticky {
      padding-bottom: 0;
    }
    body.has-sticky .footer {
      padding-bottom: 6.5rem;
    }
  }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE PASS 2 — page-specific deep fixes
   ═══════════════════════════════════════════════════════════ */

/* ─── HOMEPAGE: hero buttons stack better on mobile ──────── */
@media (max-width: 540px) {
  .hero__btns {
    margin-top: 1.75rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    width: 100%;
    max-width: 280px;
  }
  .hero__btns .btn {
    justify-content: center;
  }
  .hero__sub {
    font-size: 0.9rem;
    max-width: 320px;
  }
  .hero__label-text {
    font-size: 0.52rem;
    letter-spacing: 0.24em;
  }
  .hero__inner {
    padding-bottom: 4rem;
  }
}

/* HOMEPAGE: ey eyebrow row tighter on mobile */
@media (max-width: 540px) {
  .ey {
    flex-wrap: wrap;
    gap: 0.65rem;
  }
  .ey__l {
    width: 24px;
  }
  .ey__t {
    font-size: 0.54rem;
    letter-spacing: 0.24em;
  }
  h2.st {
    font-size: clamp(1.85rem, 7vw, 2.4rem);
    line-height: 1.15;
  }
}

/* HOMEPAGE: Signed-by-us scroll cards smaller on mobile */
@media (max-width: 540px) {
  .sig-card {
    width: 220px;
  }
  .sig-card__name {
    font-size: 1.2rem;
  }
  .scroll-gallery__track {
    animation-duration: 50s;
  }
}

/* HOMEPAGE: Testimonials stack cleanly */
@media (max-width: 600px) {
  .tcard {
    padding: 2rem 1.5rem;
  }
  .tcard__text {
    font-size: 1.05rem;
    line-height: 1.75;
  }
  .tcard__name {
    font-size: 0.92rem;
  }
  .tcard__detail {
    font-size: 0.68rem;
  }
}

/* HOMEPAGE: Pledge section mobile */
@media (max-width: 600px) {
  .pledge {
    padding: 3rem 1.25rem;
  }
  .pledge__sig {
    font-size: 2.4rem;
  }
  .pledge__name {
    font-size: 0.66rem;
  }
  .pledge__label {
    font-size: 0.58rem;
  }
  .pledge__portrait {
    width: 120px;
    height: 120px;
  }
}

/* HOMEPAGE: cta-strip__row eyebrow + title spacing on mobile */
@media (max-width: 600px) {
  .cta-strip__row {
    padding: 0;
  }
  .mb3 {
    margin-bottom: 2rem;
  }
}

/* ─── PROPERTIES PAGE: page-start spacing ────────────────── */
@media (max-width: 600px) {
  .page-start {
    padding: 5rem 0 2.5rem;
  }
  .page-start__h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  .page-start__sub {
    font-size: 0.92rem;
    line-height: 1.65;
  }
}

/* ─── PROPERTIES PAGE: tabs work properly with horizontal scroll ─ */
@media (max-width: 640px) {
  .tabs {
    /* fade out edges to indicate scrollability */
    background:
      linear-gradient(to right, rgba(248, 245, 239, 1), rgba(248, 245, 239, 0)) left center / 24px
        100% no-repeat,
      linear-gradient(to left, rgba(248, 245, 239, 1), rgba(248, 245, 239, 0)) right center / 24px
        100% no-repeat;
  }
}

/* ─── GALLERY PAGE: mobile - hero 2x2, rest square tiles ──── */
@media (max-width: 720px) {
  .gal-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 4px;
  }
  /* Regular tiles use square aspect ratio - photos crop predictably */
  .gal-item {
    aspect-ratio: 1 / 1;
    grid-column: span 1;
    grid-row: span 1;
  }
  /* Hero spans full width and double height (2x2 area) */
  .gal-item--hero {
    grid-column: 1 / -1;
    grid-row: span 2;
    aspect-ratio: 1 / 1;
  }
  /* Disable any tall/wide variants on mobile — keep grid uniform */
  .gal-item--tall,
  .gal-item--wide {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 1 / 1;
  }
}
@media (max-width: 480px) {
  .gal-masonry {
    gap: 3px;
  }
}

/* Gallery filter chips - mobile horizontal scroll */
@media (max-width: 640px) {
  .gal-filters {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    margin: 0 calc(var(--pad) * -1) 1.75rem;
    padding: 0 var(--pad);
    scrollbar-width: none;
  }
  .gal-filters::-webkit-scrollbar {
    display: none;
  }
  .gal-filter {
    flex-shrink: 0;
    padding: 0.55rem 0.9rem;
    font-size: 0.58rem;
    min-height: 38px;
    white-space: nowrap;
  }
}

/* ─── LIGHTBOX: better mobile UX ─────────────────────────── */
@media (max-width: 600px) {
  .lb__img {
    max-width: 96vw;
    max-height: 80vh;
  }
  .lb__x {
    top: 0.85rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    font-size: 1.6rem;
  }
}

/* Re-enable lb prev/next on tablets but as bottom-anchored buttons on phones */
@media (max-width: 480px) {
  .lb__prev,
  .lb__next {
    display: flex !important;
    top: auto;
    bottom: 1.25rem;
    transform: none;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  .lb__prev {
    left: 1rem;
  }
  .lb__next {
    right: 1rem;
  }
}

/* ─── ABOUT: detail hero scroll experience on mobile ─────── */
@media (max-width: 700px) {
  .detail-hero {
    height: clamp(380px, 65vh, 540px);
    min-height: 380px;
  }
  .detail-hero__h1 {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }
}

/* ABOUT: render-vs-reality compare blocks responsive */
@media (max-width: 760px) {
  .compare {
    aspect-ratio: 4/3;
  }
}
@media (max-width: 480px) {
  .compare {
    aspect-ratio: 1/1;
  }
  .compare__btn {
    width: 36px;
    height: 36px;
  }
}

/* ABOUT: 6 steps section mobile */
@media (max-width: 700px) {
  .steps {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.25rem !important;
  }
  .step__n {
    font-size: 1.5rem;
  }
  .step__t {
    font-size: 1rem;
  }
  .step__b {
    font-size: 0.82rem;
    line-height: 1.65;
  }
}
@media (max-width: 460px) {
  .steps {
    grid-template-columns: 1fr !important;
  }
}

/* ABOUT: video section centered on mobile */
@media (max-width: 600px) {
  .vid__btn {
    width: 56px;
    height: 56px;
  }
}

/* ─── CONTACT: 2-col layout already handles 1060px breakpoint
   ensure form + listings don't crowd on tablet  ───────────── */
@media (max-width: 1060px) {
  .l-grid {
    gap: 2.5rem !important;
  }
}

/* CONTACT: contact methods on mobile */
@media (max-width: 600px) {
  .p-contact__methods {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .p-contact__method-l {
    font-size: 0.54rem;
  }
  .p-contact__method-v {
    font-size: 0.92rem;
  }
}

/* CONTACT: quote box mobile */
@media (max-width: 600px) {
  .quote-box {
    padding: 1.75rem 1.25rem;
    margin-top: 1.5rem;
  }
  .quote-box p:first-child {
    font-size: 0.92rem;
    line-height: 1.65;
  }
  /* HOMEPAGE hero - phones use a portrait-cropped image focused on the villa */
  .hero .hero__photo {
    background-image: url('../images/hero.jpg') !important;
    background-size: cover;
    background-position: center bottom !important; /* Align the villa and pool at the bottom! */
    animation: none !important; /* Disable the drift animation on mobile so it doesn't override our position */
  }
}

/* ─── LANDER PAGES: breadcrumb mobile spacing ────────────── */
@media (max-width: 600px) {
  .bc {
    padding: 0.75rem var(--pad);
    font-size: 0.54rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* ─── LANDER PAGES: gallery tile sizes mobile ────────────── */
@media (max-width: 600px) {
  .gal {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }
  .gal__i:first-child {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/10;
  }
}
@media (max-width: 380px) {
  .gal__i:first-child {
    aspect-ratio: 4/3;
  }
}

/* ─── LANDER: location dark section mobile padding ───────── */
@media (max-width: 600px) {
  .loc-sec {
    padding: 3rem 0;
  }
  .loc-sec .pr__h2 {
    font-size: 1.85rem;
  }
}

/* ─── PR section on mobile ────────────────────────────────── */
@media (max-width: 600px) {
  .pr {
    padding: 2.5rem 0;
  }
  .pr__section {
    margin-bottom: 2.75rem;
  }
  .pr__head {
    margin-bottom: 1.5rem;
  }
  .pr__h2 {
    font-size: 1.85rem;
  }
  .pr__eyebrow {
    font-size: 0.54rem;
  }
}

/* ─── FAQ block tighter on mobile ────────────────────────── */
@media (max-width: 600px) {
  .cls__faq {
    padding: 2.5rem 0 3rem;
  }
  .cls__faq .pr__head {
    margin-bottom: 1.5rem;
  }
}

/* ─── LANDER: floor plan tabs mobile ──────────────────────── */
@media (max-width: 480px) {
  .fp__tabs {
    gap: 0.5rem;
  }
  .fp__tab {
    padding: 0.5rem 0.85rem;
    font-size: 0.54rem;
    letter-spacing: 0.14em;
    min-height: 36px;
  }
}

/* ─── PROPERTY LINK on contact page — image stays proportional ─ */
@media (max-width: 480px) {
  .prop-link {
    padding: 0.65rem 0.85rem;
    gap: 0.65rem;
  }
  .prop-link__img {
    width: 48px;
    height: 48px;
  }
  .prop-link__name {
    font-size: 0.92rem;
  }
  .prop-link__tag {
    font-size: 0.65rem;
    line-height: 1.4;
  }
  .prop-link__arr {
    font-size: 0.85rem;
  }
}

/* ─── DRAWER closes on backdrop tap (already in JS) — just style ─ */
.drawer.open {
  -webkit-overflow-scrolling: touch;
}

/* ─── HORIZONTAL SCROLL prevention notes ─── */
/* Do NOT add overflow-x: hidden on html or body (breaks mobile scroll). Fix overflow at the offending child element instead. */

/* ─── TYPOGRAPHY: prevent orphan widow words on titles ───── */
@media (max-width: 600px) {
  .lh2__title,
  .ov__title,
  .pr__h2,
  .cls__cta-title,
  .wt__title,
  .rr__title {
    text-wrap: balance;
  }
}

/* ─── SVG icon sizing fix on retina mobile ────────────────── */
@media (max-width: 600px) {
  .f-contact svg {
    width: 14px;
    height: 14px;
  }
  .f-contact__tag {
    font-size: 0.5rem;
  }
}

/* ─── Solara private preview — mobile hero/blur improvements ─ */
@media (max-width: 600px) {
  .reg-box {
    padding: 2rem 1.25rem;
  }
  .reg-box h3 {
    font-size: 1.2rem;
  }
}

/* ─── VIEWPORT UNIT FALLBACKS for older iOS ──────────────── */
.lh2 {
  min-height: 100vh;
  min-height: 100svh;
}
.hero {
  min-height: 100vh;
  min-height: 100svh;
}

/* ─── TOUCH DEVICE: remove hover effects to prevent stuck states ─ */
@media (hover: none) {
  .card:hover .card__img {
    transform: none;
  }
  .gal__i:hover img {
    transform: none;
  }
  .sig-card:hover > img {
    transform: none;
  }
  .vg__item:hover .vg__photo img {
    transform: none;
  }
  .wt__video:hover img {
    transform: none;
    filter: none;
  }
}

/* ─── FIX: nav__row not eating padding on tiny screens ───── */
@media (max-width: 380px) {
  .nav__row {
    padding: 0 1rem;
  }
  .logo__name {
    font-size: 0.92rem;
    letter-spacing: 0.04em;
  }
  .logo__loc {
    font-size: 0.52rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE FINE-TUNING — Apr 2026
   1. Hero photo positioning on mobile (homepage)
   2. Inquire CTA next to burger
   3. Hero text legibility (label + sub)
   4. Drawer close X button
   ═══════════════════════════════════════════════════════════ */

/* ─── 2. Mobile-only Inquire button next to hamburger ───── */
.nav__wa-mobile {
  display: none; /* hidden on desktop, shown on mobile */
  padding: 0.55rem 1rem;
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.25s,
    border-color 0.25s;
  align-self: center;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  margin-right: 0.5rem;
}
.nav__wa-mobile:hover {
  background: var(--gold-dk);
  border-color: var(--gold-dk);
}

/* Show only on mobile (when nav__wa desktop is hidden) */
@media (min-width: 861px) {
  .nav__wa-mobile {
    display: none !important;
  }
}
@media (max-width: 860px) {
  .nav__wa-mobile {
    display: inline-flex;
  }
}
@media (max-width: 380px) {
  .nav__wa-mobile {
    padding: 0.5rem 0.8rem;
    font-size: 0.5rem;
    letter-spacing: 0.18em;
  }
}

/* When nav is scrolled (dark walnut bg), keep button gold */
.nav.scrolled .nav__wa-mobile {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* ─── 3. Hero text legibility on mobile ─────────────────── */
@media (max-width: 760px) {
  .hero__label-text {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
    letter-spacing: 0.26em;
  }
  .hero__label-line {
    background: var(--gold-lt);
    height: 1.5px;
  }
  .hero__sub {
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55);
    font-size: 1rem;
    line-height: 1.65;
  }
  .hero__h1 {
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
  }
}

/* ─── 4. Drawer close X button ──────────────────────────── */
.drawer__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-family: var(--sans);
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
  z-index: 100;
}
.drawer__close:hover {
  border-color: var(--gold-lt);
  color: var(--gold-lt);
  background: rgba(184, 151, 58, 0.08);
}
.drawer ul {
  padding-top: 3.5rem;
}

/* Tighten nav right-side gap on mobile so Inquire + burger fit cleanly */
@media (max-width: 860px) {
  .nav__r {
    gap: 0.55rem;
  }
}
@media (max-width: 380px) {
  .nav__r {
    gap: 0.35rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE FINE-TUNING — Round 2
   1. Footer Properties hidden on mobile
   2. Page-start padding (Properties/Gallery/Contact more breathing room)
   3. Card spec text bigger
   4. Mobile Inquire button - frame style (matches desktop)
   5. Lander hero photo - zoom out / better villa centering
   6. Lander gallery: View Gallery button
   7. Lightbox - arrows on image, bigger X
   8. Floor plan tabs - solid gold for active
   9. Floor plan zoom button visible
   10. Back to Properties button
   ═══════════════════════════════════════════════════════════ */

/* ─── 1. FOOTER: hide Properties column on mobile ────────── */
@media (max-width: 600px) {
  .footer__g > div:nth-child(2) {
    display: none;
  }
}

/* ─── 2. PAGE-START: more breathing room from nav ─────────── */
.page-start {
  padding-top: calc(var(--nav-h) + clamp(3.5rem, 7vw, 6rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

/* ─── 3. CARD SPEC TEXT: bigger, more readable ─────────────── */
.card__spec {
  font-size: 0.76rem;
  letter-spacing: 0.01em;
  color: var(--mid);
}
@media (max-width: 540px) {
  .card__spec {
    font-size: 0.9rem;
  }
  .card__name {
    font-size: 1.5rem;
  }
  .card__price {
    font-size: 1.45rem;
  }
  .card__loc {
    font-size: 0.68rem;
  }
}

/* ─── 4. MOBILE INQUIRE BUTTON: transparent w/ thin gold border ─ */
.nav__wa-mobile {
  background: transparent;
  border: 1px solid rgba(184, 151, 58, 0.55);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  letter-spacing: 0.22em;
}
.nav__wa-mobile:hover {
  background: rgba(184, 151, 58, 0.12);
  border-color: var(--gold-lt);
  color: #fff;
}
/* When nav scrolled (dark walnut), still subtle frame style */
.nav.scrolled .nav__wa-mobile {
  background: transparent;
  border-color: rgba(184, 151, 58, 0.4);
  color: var(--gold-lt);
}
.nav.scrolled .nav__wa-mobile:hover {
  background: rgba(184, 151, 58, 0.08);
  border-color: var(--gold-lt);
  color: var(--gold-lt);
}
/* Body class no-hero (dark nav from start) - same dark treatment */
body.no-hero .nav__wa-mobile {
  background: transparent;
  border-color: rgba(184, 151, 58, 0.4);
  color: var(--gold-lt);
}

/* ─── 5. LANDER HERO PHOTO - mobile centering ─────────────── */
@media (max-width: 760px) {
  .lh2__photo {
    background-size: cover;
    background-position: center 60%;
  }
}
@media (max-width: 480px) {
  .lh2__photo {
    background-position: center 65%;
  }
}

/* HOMEPAGE hero - phones use a portrait-cropped image focused on the villa */
@media (max-width: 760px) {
  .hero .hero__photo {
    background-image: url('../images/hero.jpg') !important;
    background-size: cover;
    background-position: 46% 80% !important; /* Align the villa perfectly in the middle of mobile viewport! */
    animation: none !important; /* Disable the drift animation on mobile so it doesn't override our position */
  }
}

/* ─── 6. LANDER: View Gallery button ──────────────────────── */
.gal-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}
.gal-actions__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.5rem;
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s;
  min-height: 44px;
}
.gal-actions__btn:hover {
  background: var(--text);
  border-color: var(--text);
  color: var(--white);
}
.gal-actions__btn svg {
  color: var(--gold);
  transition: color 0.25s;
}
.gal-actions__btn:hover svg {
  color: var(--gold-lt);
}

/* ─── 7. LIGHTBOX: better arrows (on image) + bigger X ───── */
.lb__x {
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.2s;
}
.lb__x:hover {
  background: rgba(184, 151, 58, 0.85);
  color: #fff;
  border-color: var(--gold-lt);
}

.lb__btn {
  width: 52px;
  height: 52px;
  background: rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: all 0.2s;
}
.lb__btn:hover {
  background: rgba(184, 151, 58, 0.85);
  color: #fff;
  border-color: var(--gold-lt);
}
.lb__prev {
  left: 1.5rem;
}
.lb__next {
  right: 1.5rem;
}

/* Re-enable side arrows on mobile (override Turn 1 hide) */
@media (max-width: 480px) {
  .lb__prev,
  .lb__next {
    display: flex !important;
    width: 44px;
    height: 44px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
  }
  .lb__prev {
    left: 0.65rem;
  }
  .lb__next {
    right: 0.65rem;
  }
  .lb__x {
    width: 44px;
    height: 44px;
    top: 0.75rem;
    right: 0.75rem;
  }
}

/* ─── 8. FLOOR PLAN TABS: clear visual difference ──────────── */
.fp__tabs {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.fp__tab {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--soft);
  padding: 0.7rem 1.4rem;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
  min-height: 42px;
}
.fp__tab:hover {
  border-color: var(--gold);
  color: var(--text);
}
.fp__tab.fp__tab--on {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* ─── 9. FLOOR PLAN: zoom button more prominent ────────────── */
.fp__frame::after {
  content: '';
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 38px;
  height: 38px;
  background: rgba(22, 15, 5, 0.85)
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23CDB46A' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='8'/><line x1='21' y1='21' x2='16.65' y2='16.65'/><line x1='11' y1='8' x2='11' y2='14'/><line x1='8' y1='11' x2='14' y2='11'/></svg>")
    no-repeat center center;
  border-radius: 50%;
  border: 1px solid rgba(184, 151, 58, 0.4);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  pointer-events: none;
  font-size: 0;
  transition:
    background-color 0.2s,
    border-color 0.2s;
  z-index: 2;
}
.fp__frame:hover::after {
  background-color: var(--gold);
  border-color: var(--gold);
}

/* Lightbox (plan variant) - allow pinch to zoom on mobile */
.lb.lb--plan .lb__img {
  touch-action: pinch-zoom;
  cursor: zoom-in;
}
/* Plan mode arrows visible — navigate between Floor 1 and Floor 2 */

/* Lightbox caption (floor labels in plan mode) */
.lb__caption {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 1.25rem;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.04em;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
  white-space: nowrap;
}
.lb.lb--plan .lb__caption {
  opacity: 1;
}
@media (max-width: 480px) {
  .lb__caption {
    font-size: 0.9rem;
    bottom: 4.5rem;
    padding: 0.4rem 1rem;
  }
}

/* ─── (Back to Properties block removed - using browser back instead) ─── */

/* ═══════════════════════════════════════════════════════════
   MOBILE READABILITY SWEEP - moderate bumps across all pages
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 600px) {
  /* CONTACT page - methods on left side (Reach Us Directly) */
  .ci {
    padding: 1.45rem 0;
    gap: 1.1rem;
  }
  .ci__icon {
    width: 44px;
    height: 44px;
  }
  .ci__lbl {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }
  .ci__val {
    font-size: 1.08rem;
  }

  /* CONTACT page - quality pledge quote box */
  .quote-box {
    padding: 1.85rem 1.4rem;
  }
  .quote-box p:first-child {
    font-size: 1.1rem;
    line-height: 1.7;
  }
  .quote-box__attr {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    margin-top: 1rem;
  }

  /* CONTACT page - listings on right column (already bumped via card sweep
     but ensure prop-link readability) */
  .prop-link__name {
    font-size: 1.1rem;
  }
  .prop-link__tag {
    font-size: 0.82rem;
  }
  .prop-link__status {
    font-size: 0.58rem;
    padding: 0.2rem 0.5rem;
    letter-spacing: 0.16em;
  }

  /* PROPERTIES page intro */
  .page-start__title {
    font-size: clamp(2.1rem, 8vw, 2.8rem);
  }
  .page-start__sub {
    font-size: 1.02rem;
    line-height: 1.72;
  }
  .page-start__bc {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
  }

  /* HOMEPAGE - Available Properties section eyebrow + heading */
  .ey__t {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
  }
  h2.st {
    font-size: clamp(2rem, 7vw, 2.6rem);
  }
  .st-sub {
    font-size: 1rem;
  }

  /* HOMEPAGE craft section (handcrafted) */
  .craft__pillar-num {
    font-size: 1.1rem;
  }
  .craft__pillar-title {
    font-size: 1.05rem;
  }
  .craft__pillar-desc {
    font-size: 0.92rem;
    line-height: 1.7;
  }
  .craft__title {
    font-size: clamp(1.95rem, 6.5vw, 2.4rem);
  }
  .craft__sub {
    font-size: 1rem;
    line-height: 1.72;
  }

  /* ABOUT page narrative copy */
  .ab-block p,
  .prose p {
    font-size: 1rem;
    line-height: 1.85;
  }
  .step__t {
    font-size: 1.1rem;
  }
  .step__b {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  .step__n {
    font-size: 1.6rem;
  }

  /* GALLERY page - filter button mobile size */
  .gal-filter {
    font-size: 0.66rem;
    letter-spacing: 0.18em;
  }

  /* LANDER pages - hero loc label + sub copy already big, but improve eyebrow */
  .lh2__loc {
    font-size: 0.62rem;
    letter-spacing: 0.26em;
  }
  .lh2__kicker {
    font-size: 1rem;
  }

  /* LANDER overview body text */
  .ov__lead {
    font-size: 1.08rem;
    line-height: 1.7;
  }
  .ov__body {
    font-size: 0.96rem;
    line-height: 1.85;
  }
  .ov__eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
  }
  .ov__fact-v {
    font-size: 1.55rem;
  }
  .ov__fact-l {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  /* LANDER specs editorial - bigger labels */
  .specs-edit__big-l {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }

  /* LANDER pr (practical) section eyebrow + h2 */
  .pr__eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.22em;
  }
  .pr__h2 {
    font-size: 1.95rem;
  }

  /* LANDER location stats */
  .loc2__t {
    font-size: 1.4rem;
  }
  .loc2__l {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }

  /* LANDER FAQ */
  .faq__i summary {
    font-size: 1.05rem;
  }
  .faq__b {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  /* LANDER final CTA */
  .cls__cta-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
  }
  .cls__cta-title {
    font-size: 1.95rem;
    line-height: 1.22;
  }
  .cls__cta-sub {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  /* LANDER UC + Sold callouts */
  .uc-callout__l,
  .sold-callout__l {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
  }
  .uc-callout__t,
  .sold-callout__t {
    font-size: 1.1rem;
  }
  .uc-callout__b,
  .sold-callout__b {
    font-size: 0.92rem;
    line-height: 1.75;
  }

  /* LANDER UC tag in hero */
  .uc-tag-hero {
    font-size: 0.85rem;
    padding: 0.55rem 0.9rem;
  }

  /* LANDER walkthrough section */
  .wt__title {
    font-size: 2rem;
  }
  .wt__sub {
    font-size: 1rem;
  }

  /* LANDER render-vs-reality */
  .rr__title {
    font-size: 1.95rem;
  }
  .rr__sub {
    font-size: 1rem;
  }
  .rr__eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
  }

  /* FOOTER text */
  .f-name {
    font-size: 1.4rem;
  }
  .f-tag {
    font-size: 0.72rem;
    line-height: 1.7;
  }
  .f-loc {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
  }
  .f-ht {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
  }
  .f-links li,
  .f-c {
    font-size: 0.92rem;
  }
  .f-contact a {
    font-size: 0.92rem;
  }
  .footer__bot {
    font-size: 0.72rem;
  }

  /* NAV - logo location stronger */
  .logo__loc {
    font-size: 0.56rem;
    letter-spacing: 0.26em;
  }

  /* HERO label + sub on homepage */
  .hero__label-text {
    font-size: 0.66rem;
    letter-spacing: 0.26em;
  }
  .hero__sub {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  /* PAGE BANNER (inner page heros) */
  .p-banner__loc {
    font-size: 0.66rem;
    letter-spacing: 0.26em;
  }
  .p-banner__h1 {
    font-size: clamp(2.4rem, 8vw, 3.4rem);
  }

  /* SOLARA - private preview specifics */
  .reg-box h3 {
    font-size: 1.3rem;
  }
  .reg-box__lbl {
    font-size: 0.66rem;
    letter-spacing: 0.24em;
  }
  .cd-l {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
  }
  .pill__l {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  /* BREADCRUMB */
  .bc__inner {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }
}

/* Smaller phones (<400px) — slightly tighter but still readable */
@media (max-width: 400px) {
  .ci__val {
    font-size: 1rem;
  }
  .ci__lbl {
    font-size: 0.64rem;
  }
  .quote-box p:first-child {
    font-size: 1.02rem;
  }
  .ov__lead {
    font-size: 1.02rem;
  }
  .ov__body {
    font-size: 0.92rem;
  }
  .pr__h2 {
    font-size: 1.75rem;
  }
  .cls__cta-title {
    font-size: 1.75rem;
  }
  .faq__i summary {
    font-size: 1rem;
  }
  .faq__b {
    font-size: 0.88rem;
  }
}

/* ─── FOOTER MOBILE: match Company to Contact + bigger tagline ─── */
@media (max-width: 600px) {
  /* Where excellence lives - tagline bigger */
  .f-tag {
    font-size: 1.18rem;
    line-height: 1.6;
    margin-top: 1.4rem;
  }
  .f-name {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
  }
  .f-loc {
    font-size: 0.68rem;
    letter-spacing: 0.26em;
  }

  /* Section heading consistency */
  .f-ht {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    margin-bottom: 1.1rem;
    color: var(--gold-lt);
  }

  /* Company column links — match Contact column visual weight */
  .f-links li {
    margin-bottom: 0.65rem;
  }
  .f-links li a {
    font-size: 1rem;
    color: rgba(240, 232, 216, 0.82);
    line-height: 1.5;
  }
  .f-links li a:hover {
    color: var(--dt);
  }

  /* Contact column — match Company rhythm exactly, icons stay subtle */
  .f-contact {
    gap: 0.65rem;
  }
  .f-contact li {
    margin-bottom: 0;
    padding: 0;
    gap: 0.7rem;
    font-size: 1rem;
    line-height: 1.5;
  }
  .f-contact a {
    font-size: 1rem;
    color: rgba(240, 232, 216, 0.82);
    line-height: 1.5;
  }
  .f-contact a:hover {
    color: var(--dt);
  }
  .f-contact__ic {
    width: 14px;
    height: 14px;
    opacity: 0.7;
  }
  .f-contact__ic svg {
    width: 14px;
    height: 14px;
  }
  .f-contact__tag {
    width: 14px;
    height: auto;
    font-size: 0.54rem;
    letter-spacing: 0.04em;
    opacity: 0.7;
  }

  /* Footer bottom row */
  .footer__bot {
    font-size: 0.76rem;
    padding-top: 2rem;
  }
}

/* ─── CONTACT PAGE: CTAs vs reference info ─────────────────── */

/* CTA row - WhatsApp + LINE side by side */
.ci-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
@media (max-width: 480px) {
  .ci-cta-row {
    grid-template-columns: 1fr;
  }
}

.ci-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  color: var(--text);
  transition:
    border-color 0.25s,
    background 0.25s,
    transform 0.25s;
  position: relative;
  overflow: hidden;
}
.ci-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 151, 58, 0) 0%, rgba(184, 151, 58, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.ci-cta:hover {
  border-color: var(--gold);
  background: rgba(184, 151, 58, 0.03);
  transform: translateY(-1px);
}
.ci-cta:hover::before {
  opacity: 1;
}
.ci-cta:hover .ci-cta__arr {
  transform: translateX(4px);
}
.ci-cta:hover .ci-cta__ic {
  color: var(--gold-dk);
}

.ci-cta__ic {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: color 0.25s;
}
.ci-cta__line-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 22px;
  background: var(--gold);
  color: #fff;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  border-radius: 3px;
  font-family: var(--sans);
  letter-spacing: 0.14em;
}
.ci-cta:hover .ci-cta__line-tag {
  background: var(--gold-dk);
}

.ci-cta__text {
  flex: 1;
  min-width: 0;
}
.ci-cta__lbl {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--soft);
  font-weight: 500;
  margin-bottom: 0.2rem;
  line-height: 1;
}
.ci-cta__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: 0.005em;
}
.ci-cta__arr {
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s;
  position: relative;
  z-index: 1;
}

/* Reference info - tighter rows for email/phone/location */
.ci-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
  margin-bottom: 2.5rem;
}
.ci-info__row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}
.ci-info__lbl {
  font-size: 0.56rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  width: 80px;
  flex-shrink: 0;
}
.ci-info__val {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.2s;
}
a.ci-info__val:hover {
  color: var(--gold-dk);
}

/* Mobile - tighter info rows */
@media (max-width: 600px) {
  .ci-cta {
    padding: 1rem 1.1rem;
    gap: 0.85rem;
  }
  .ci-cta__name {
    font-size: 1.15rem;
  }
  .ci-cta__lbl {
    font-size: 0.54rem;
  }
  .ci-cta__ic {
    width: 36px;
    height: 36px;
  }
  .ci-cta__line-tag {
    width: 34px;
    height: 20px;
    font-size: 0.54rem;
  }
  .ci-info__lbl {
    font-size: 0.58rem;
    width: 64px;
    letter-spacing: 0.2em;
  }
  .ci-info__val {
    font-size: 1rem;
  }
  .ci-info__row {
    padding: 0.75rem 0;
    gap: 0.85rem;
  }
}

/* ─── FOOTER SOCIAL: FB + IG icons under contact list ────── */
.f-social {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(184, 151, 58, 0.14);
}
.f-social__lbl {
  font-size: 0.56rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-lt);
  font-weight: 500;
  margin-bottom: 0.9rem;
  opacity: 0.7;
}
.f-social__row {
  display: flex;
  gap: 0.85rem;
}
.f-social__ic {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(240, 232, 216, 0.14);
  border-radius: 50%;
  color: rgba(240, 232, 216, 0.72);
  text-decoration: none;
  transition:
    color 0.25s,
    border-color 0.25s,
    background 0.25s;
}
.f-social__ic:hover {
  color: var(--gold-lt);
  border-color: rgba(184, 151, 58, 0.45);
  background: rgba(184, 151, 58, 0.06);
}

/* Mobile - tap target friendly */
@media (max-width: 600px) {
  .f-social {
    margin-top: 1.4rem;
    padding-top: 1.4rem;
  }
  .f-social__lbl {
    font-size: 0.62rem;
  }
  .f-social__ic {
    width: 44px;
    height: 44px;
  }
  .f-social__ic svg {
    width: 20px;
    height: 20px;
  }
}

/* ─── BTN-OUTLINE: secondary action on light backgrounds ──── */
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-dk);
  background: rgba(184, 151, 58, 0.04);
}

/* ═══════════════════════════════════════════════════════════
   FEATURED PROPERTIES — bottom of every lander page
   ═══════════════════════════════════════════════════════════ */
.featured {
  padding: clamp(4rem, 7vw, 6rem) 0;
  border-top: 1px solid var(--border);
  background: var(--surf2);
}
.featured__head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4.5vw, 3.5rem);
}
.featured__eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}
.featured__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--text);
  margin: 0 auto;
  max-width: 22ch;
}
.featured__title em {
  font-style: italic;
  color: var(--soft);
}
.featured__btnwrap {
  text-align: center;
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
}
.featured__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
  text-decoration: none;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s,
    transform 0.25s;
}
.featured__btn:hover {
  border-color: var(--gold);
  color: var(--gold-dk);
  background: rgba(184, 151, 58, 0.04);
}
.featured__btn-arrow {
  transition: transform 0.25s;
}
.featured__btn:hover .featured__btn-arrow {
  transform: translateX(4px);
}

/* Mobile: tighter section */
@media (max-width: 760px) {
  .featured {
    padding: 3rem 0 3.5rem;
  }
  .featured__head {
    margin-bottom: 2rem;
  }
}

/* ─── THAI LANGUAGE TYPOGRAPHY OVERRIDES ─────────────────── */
/* Force all text on Thai pages to render straight (no italics) */
html[lang='th'] * {
  font-style: normal !important;
}

/* Increase vertical spacing between eyebrows/labels and huge headings on Thai pages to prevent tone mark overlaps */
@media (min-width: 769px) {
  html[lang='th'] .hero__label {
    margin-bottom: 2.75rem;
  }
  html[lang='th'] .p-banner__eyebrow {
    margin-bottom: 2.75rem;
  }
  html[lang='th'] .page-start__bc {
    margin-bottom: 2.5rem;
  }
}

/* Increase font size of navigation links and listing tab filters on Thai pages for optimal legibility */
html[lang='th'] .nl {
  font-size: 1rem;
}

html[lang='th'] .tab {
  font-size: 0.9rem;
}

/* Make "Coming Soon" and "Sold" placeholder labels smaller on Thai pages */
html[lang='th'] .card__price[style*='color:var(--soft)'],
html[lang='th'] .card__price[style*='color: var(--soft)'] {
  font-size: 0.95rem;
  font-family: var(--sans);
}

/* Make trust strip top text elements smaller on Thai pages */
html[lang='th'] #trustStrip div > div:first-child {
  font-size: clamp(1rem, 1.4vw, 1.25rem) !important;
}

/* Make Enquiry CTA buttons ("ฝากข้อความสอบถาม") larger on Thai pages for more prominence */
html[lang='th'] a.btn[href*='contact.html'] {
  font-size: 0.9rem;
  padding: 1.1rem 2.8rem;
}

/* Make trust strip bottom text elements slightly bigger on Thai pages */
html[lang='th'] #trustStrip div > div:last-child {
  font-size: 0.85rem !important;
}

/* Increase font size of footer column headers on Thai pages for optimal legibility */
html[lang='th'] .f-ht {
  font-size: 0.88rem;
}

/* Gallery page Thai typography optimizations */
html[lang='th'] .gal-filter__btn {
  font-size: 0.88rem;
  letter-spacing: 0.05em;
}

html[lang='th'] .page-start__title {
  font-size: clamp(3rem, 6.5vw, 5.2rem);
}

html[lang='th'] .page-start__bc {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

html[lang='th'] .ey__t {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

html[lang='th'] .gal-cta .btn {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 1.1rem 2.5rem;
}

html[lang='th'] .gal-cta h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem) !important;
}

/* About page Thai typography optimizations */
html[lang='th'] .detail-hero__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

html[lang='th'] .pledge__label {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

html[lang='th'] .about-cta p {
  font-size: 1.05rem !important;
  line-height: 1.7;
}

html[lang='th'] .about-cta .btn {
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  padding: 1.15rem 2.8rem;
}

html[lang='th'] .detail-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
}

html[lang='th'] .rv h2.st.st--w {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem) !important;
}

html[lang='th'] .pledge__quote {
  font-size: clamp(1rem, 1.8vw, 1.35rem);
}

html[lang='th'] .st {
  font-size: clamp(1.8rem, 3.8vw, 3rem);
}

html[lang='th'] .about-cta h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem) !important;
}

/* Contact page Thai typography optimizations */
html[lang='th'] .two-col p[style*='font-size:.62rem'] {
  font-size: 0.85rem !important;
  letter-spacing: 0.05em !important;
}

html[lang='th'] .ci-cta__lbl {
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

html[lang='th'] .cform-inline__label {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

html[lang='th'] .cform__field label,
html[lang='th'] .cform--compact .cform__field label {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

html[lang='th'] .cform__field select,
html[lang='th'] .cform__field input,
html[lang='th'] .cform__field textarea,
html[lang='th'] .cform--compact .cform__field select,
html[lang='th'] .cform--compact .cform__field input,
html[lang='th'] .cform--compact .cform__field textarea {
  font-size: 0.95rem;
}

html[lang='th'] .cform-inline__title {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

html[lang='th'] .ci-info__lbl {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  width: 110px;
}

/* Villa page Thai typography optimizations */
html[lang='th'] .lh2__spec-l {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

html[lang='th'] .ov__fact-l {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

html[lang='th'] .pr__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

html[lang='th'] .gal-actions__btn {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 1rem 1.8rem;
}

html[lang='th'] .fp__tab {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 0.85rem 1.6rem;
}

html[lang='th'] .specs-edit__big-l {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

html[lang='th'] .specs-edit__big-v {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
}

html[lang='th'] .loc2__l {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

html[lang='th'] .loc2__t {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

html[lang='th'] .cls__cta-eyebrow,
html[lang='th'] .featured__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

html[lang='th'] .cls__cta-title {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
}

html[lang='th'] .featured__title {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  max-width: 32ch;
}

/* Main page Thai typography optimizations */
html[lang='th'] .hero__label-text {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

html[lang='th'] .nav__wa,
html[lang='th'] .nav__wa-mobile {
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

html[lang='th'] .btn {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 1.1rem 2.5rem;
}

/* Thai nav links: disable uppercase (no-op for Thai but causes rendering inconsistency) */
html[lang='th'] .nl {
  text-transform: none;
  letter-spacing: 0.06em;
  font-weight: 400;
}

/* Thai drawer links: normalize rendering */
html[lang='th'] .drawer a {
  text-transform: none;
  letter-spacing: 0.06em;
}

/* Thai hero heading: Thai script needs more line-height for stacked diacritics */
html[lang='th'] .hero__h1 {
  line-height: 1.35;
  font-size: clamp(3rem, 7vw, 6.2rem);
}
