/* ==========================================================================
   Metropolitan — 1420 Aloma Avenue single-property landing page
   Layered on top of assets/site.css (brand tokens, fonts, reset).
   ========================================================================== */

:root {
  --lh-warm:  #F7F5F2;   /* warm paper for editorial bands */
  --lh-night: #0B1114;   /* near-black for cinematic bands */
  --lh-night-2:#111A1E;
  --lh-glow:  #0CC3DF;
  --lh-hair:  rgba(10,10,12,0.09);
  --lh-hair-d:rgba(255,255,255,0.14);
  --lh-pad:   clamp(84px, 10vw, 168px);
  --lh-gut:   clamp(20px, 5vw, 88px);
  --lh-max:   1320px;
}

body.lh { background: var(--paper); overflow-x: hidden; }
body.lh.no-scroll { overflow: hidden; }

.lh-wrap { max-width: var(--lh-max); margin: 0 auto; width: 100%; }
.lh-narrow { max-width: 940px; margin: 0 auto; width: 100%; }

/* ── Shared type ─────────────────────────────────────────────────────────── */
.lh-eyebrow {
  font-family: var(--body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--teal);
  margin: 0 0 22px; display: flex; align-items: center; gap: 12px;
}
.lh-eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; opacity: .55; flex: none; }
.lh-eyebrow.center { justify-content: center; }
.on-dark .lh-eyebrow { color: var(--lh-glow); }

.lh-h2 {
  font-family: var(--display); font-weight: 200;
  font-size: clamp(32px, 5vw, 66px); line-height: 1.04; letter-spacing: -0.035em;
  margin: 0 0 28px; color: var(--ink); text-wrap: balance;
}
.on-dark .lh-h2 { color: #fff; }
.lh-h3 {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(21px, 2.3vw, 30px); line-height: 1.16; letter-spacing: -0.022em;
  margin: 0 0 14px; color: var(--ink);
}
.lh-lede {
  font-family: var(--body); font-weight: 300;
  font-size: clamp(17px, 1.5vw, 21px); line-height: 1.72; color: #3A3D42;
  margin: 0 0 22px; max-width: 62ch;
}
.on-dark .lh-lede { color: rgba(255,255,255,0.76); }
.lh-body { font-size: 16px; line-height: 1.78; color: #55585E; margin: 0 0 18px; max-width: 66ch; }
.on-dark .lh-body { color: rgba(255,255,255,0.66); }

/* Reveal on scroll */
.rv { opacity: 0; transform: translateY(26px); transition: opacity 900ms var(--ease), transform 900ms var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: 90ms; } .rv-d2 { transition-delay: 180ms; }
.rv-d3 { transition-delay: 270ms; } .rv-d4 { transition-delay: 360ms; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.lh-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 17px 34px; border-radius: 999px;
  font-family: var(--body); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; white-space: nowrap;
  transition: background 260ms var(--ease), color 260ms var(--ease),
              transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms;
  cursor: pointer; border: 1px solid transparent;
}
.lh-btn svg { width: 15px; height: 15px; flex: none; }
.lh-btn-primary { background: var(--teal); color: #fff; box-shadow: 0 16px 38px -14px rgba(0,120,141,0.62); }
.lh-btn-primary:hover { background: var(--teal-d); transform: translateY(-2px); box-shadow: 0 22px 46px -16px rgba(0,120,141,0.7); }
.lh-btn-ghost { background: rgba(255,255,255,0.09); color: #fff; border-color: rgba(255,255,255,0.34); backdrop-filter: blur(10px); }
.lh-btn-ghost:hover { background: rgba(255,255,255,0.96); color: var(--ink); border-color: transparent; transform: translateY(-2px); }
.lh-btn-line { background: transparent; color: var(--ink); border-color: rgba(10,10,12,0.22); }
.lh-btn-line:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px); }

/* ══════════════════════════════════════════════════════════════════════════
   NAV — Metropolitan puck, listing variant
   ══════════════════════════════════════════════════════════════════════════ */
.lh-nav-wrap {
  position: fixed; top: 22px; left: clamp(14px, 2vw, 32px); right: clamp(14px, 2vw, 32px);
  z-index: 400; display: flex; justify-content: center; pointer-events: none;
  transition: top 320ms var(--ease), transform 420ms var(--ease), opacity 300ms var(--ease);
}
.lh-nav-wrap.scrolled { top: 14px; }
.lh-nav-wrap.nav-hidden { transform: translateY(-160%); opacity: 0; }
.lh-nav {
  pointer-events: auto; position: relative;
  width: 100%; max-width: 1180px;
  display: flex; align-items: center; gap: 18px;
  padding: 6px 10px 6px 92px;
  background: rgba(255,255,255,0.84);
  backdrop-filter: blur(30px) saturate(170%); -webkit-backdrop-filter: blur(30px) saturate(170%);
  border: 1px solid rgba(255,255,255,0.62); border-radius: 999px;
  box-shadow: 0 16px 44px -18px rgba(3,22,29,0.28);
  transition: padding 320ms var(--ease), background 320ms var(--ease);
}
.lh-nav-wrap.scrolled .lh-nav { padding: 4px 8px 4px 82px; background: rgba(255,255,255,0.95); }
.lh-logo {
  position: absolute; left: -4px; top: 50%; transform: translateY(-50%);
  width: 82px; height: 82px; background: var(--paper); border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -10px rgba(0,120,141,0.48), 0 1px 0 rgba(255,255,255,0.95) inset;
  transition: transform 280ms var(--ease), width 280ms var(--ease), height 280ms var(--ease);
}
.lh-logo:hover { transform: translateY(-50%) scale(1.04); }
.lh-logo img { width: 60px; height: 60px; transition: width 280ms var(--ease), height 280ms var(--ease); }
.lh-nav-wrap.scrolled .lh-logo { width: 68px; height: 68px; }
.lh-nav-wrap.scrolled .lh-logo img { width: 50px; height: 50px; }

.lh-nav-id { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.lh-nav-id .addr {
  font-family: var(--display); font-weight: 500; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.lh-nav-id .sub { font-family: var(--body); font-size: 10.5px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey-500); }
.lh-nav-links { display: none; margin-left: auto; gap: 26px; }
@media (min-width: 1000px) { .lh-nav-links { display: flex; } }
.lh-nav-links a {
  font-family: var(--body); font-size: 12px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--grey-500); position: relative; padding: 4px 0;
  transition: color 220ms;
}
.lh-nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--teal); transition: right 320ms var(--ease);
}
.lh-nav-links a:hover { color: var(--ink); }
.lh-nav-links a:hover::after { right: 0; }
.lh-nav-right { display: inline-flex; align-items: center; gap: 10px; margin-left: auto; }
@media (min-width: 1000px) { .lh-nav-right { margin-left: 0; } }
.lh-lang { display: inline-flex; align-items: center; padding: 3px; background: rgba(10,10,12,0.06); border-radius: 999px; font-family: var(--body); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; }
.lh-lang a { display: inline-flex; padding: 6px 11px; border-radius: 999px; color: var(--grey-500); transition: background 200ms, color 200ms; }
.lh-lang a.active { background: var(--teal); color: #fff; }
.lh-lang a:not(.active):hover { color: var(--ink); }
.lh-nav-cta {
  padding: 12px 22px; border-radius: 999px; background: var(--ink); color: #fff;
  font-family: var(--body); font-size: 10.5px; font-weight: 600; letter-spacing: 0.17em;
  text-transform: uppercase; transition: background 220ms, transform 220ms; white-space: nowrap;
}
.lh-nav-cta:hover { background: var(--teal); transform: translateY(-1px); }
@media (max-width: 640px) {
  .lh-nav-wrap { top: 10px; }
  .lh-nav { padding: 4px 8px 4px 66px; gap: 10px; }
  .lh-logo { width: 60px; height: 60px; }
  .lh-logo img { width: 44px; height: 44px; }
  .lh-nav-wrap.scrolled .lh-logo { width: 54px; height: 54px; }
  .lh-nav-wrap.scrolled .lh-logo img { width: 40px; height: 40px; }
  .lh-nav-id .addr { font-size: 11px; }
  .lh-nav-id .sub { display: none; }
  .lh-nav-cta { padding: 9px 14px; font-size: 9.5px; letter-spacing: 0.1em; }
  .lh-lang { display: none; }
}

/* ══════════════════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════════════════ */
.lh-hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(140px, 18vh, 220px) var(--lh-gut) clamp(46px, 5vw, 70px);
  overflow: hidden; color: #fff; isolation: isolate;
}
.lh-hero-media { position: absolute; inset: 0; z-index: 0; }
.lh-hero-media .slide {
  position: absolute; inset: 0; background-size: cover; background-position: center 55%;
  opacity: 0; transform: scale(1.06);
  transition: opacity 2000ms linear;
  will-change: opacity, transform;
}
.lh-hero-media .slide.on { opacity: 1; animation: lhKen 11000ms linear forwards; }
@keyframes lhKen { from { transform: scale(1.02); } to { transform: scale(1.11); } }
.lh-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4,10,13,0.62) 0%, rgba(4,10,13,0.14) 32%, rgba(4,10,13,0.52) 72%, rgba(4,10,13,0.90) 100%);
}
.lh-hero-inner { position: relative; z-index: 2; width: 100%; max-width: var(--lh-max); margin: 0 auto; }

.lh-hero-tag {
  display: inline-flex; align-items: center; gap: 11px; padding: 8px 18px 8px 14px;
  border-radius: 999px; background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.24);
  backdrop-filter: blur(10px); font-family: var(--body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.19em; text-transform: uppercase; margin: 0 0 26px;
}
.lh-hero-tag i { width: 7px; height: 7px; border-radius: 999px; background: var(--lh-glow); box-shadow: 0 0 14px var(--lh-glow); }
.lh-hero h1 {
  font-family: var(--display); font-weight: 200;
  font-size: clamp(40px, 7.6vw, 116px); line-height: 0.94; letter-spacing: -0.045em;
  margin: 0 0 6px; text-shadow: 0 2px 40px rgba(0,0,0,0.28);
}
.lh-hero h1 span { display: block; }
.lh-hero h1 { margin-bottom: clamp(14px, 1.6vw, 22px); }
.lh-hero h1 .thin { font-weight: 200; opacity: .96; }
.lh-hero-place {
  font-family: var(--display); font-weight: 300; letter-spacing: 0.02em;
  font-size: clamp(15px, 1.7vw, 22px); color: rgba(255,255,255,0.82);
  margin: 0 0 clamp(30px, 3.4vw, 42px); max-width: 46ch;
}
.lh-hero-row { display: flex; flex-wrap: wrap; align-items: flex-end; gap: clamp(22px, 4vw, 60px); }
.lh-hero-price { display: flex; flex-direction: column; gap: 4px; }
.lh-hero-price .lbl { font-family: var(--body); font-size: 10.5px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.58); }
.lh-hero-price .num {
  font-family: var(--body); font-weight: 200; font-variant-numeric: tabular-nums;
  font-size: clamp(32px, 4.2vw, 56px); line-height: 1; letter-spacing: -0.03em; color: #fff;
}
.lh-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-left: auto; }
@media (max-width: 780px) { .lh-hero-ctas { margin-left: 0; width: 100%; } .lh-hero-ctas .lh-btn { flex: 1 1 200px; } }

.lh-hero-facts {
  position: relative; z-index: 2; margin: clamp(30px, 3.4vw, 46px) 0 0; width: 100%;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.18); border-radius: 16px; overflow: hidden;
}
@media (min-width: 760px) { .lh-hero-facts { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 759px) { .lh-hero-fact:last-child { grid-column: 1 / -1; } }
.lh-hero-fact { background: rgba(8,14,17,0.42); backdrop-filter: blur(14px); padding: 16px 18px; }
.lh-hero-fact .v { font-family: var(--display); font-weight: 400; font-size: clamp(16px, 1.5vw, 20px); letter-spacing: -0.01em; color: #fff; }
.lh-hero-fact .k { font-family: var(--body); font-size: 10px; font-weight: 500; letter-spacing: 0.19em; text-transform: uppercase; color: rgba(255,255,255,0.56); margin-top: 4px; }

.lh-scroll-cue {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%); z-index: 3;
  width: 1px; height: 46px; background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.75) 100%);
  animation: lhCue 2400ms var(--ease) infinite;
}
@keyframes lhCue { 0%,100% { opacity: .25; transform: translateX(-50%) scaleY(.55); } 50% { opacity: 1; transform: translateX(-50%) scaleY(1); } }
@media (max-width: 780px) { .lh-scroll-cue { display: none; } }

/* ══════════════════════════════════════════════════════════════════════════
   STICKY SPEC BAR
   ══════════════════════════════════════════════════════════════════════════ */
.lh-sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 380;
  background: rgba(255,255,255,0.90); backdrop-filter: blur(26px) saturate(170%);
  border-top: 1px solid var(--lh-hair);
  transform: translateY(102%); transition: transform 460ms var(--ease);
  box-shadow: 0 -12px 40px -22px rgba(3,22,29,0.4);
}
.lh-sticky.on { transform: none; }
.lh-sticky-inner {
  max-width: var(--lh-max); margin: 0 auto; padding: 12px var(--lh-gut);
  display: flex; align-items: center; gap: 22px;
}
.lh-sticky .who { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; flex: 1 1 auto; }
.lh-sticky .who b { font-family: var(--display); font-weight: 500; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lh-sticky .who span { font-family: var(--body); font-size: 11px; color: var(--grey-500); letter-spacing: 0.06em; }
.lh-sticky .price { font-family: var(--body); font-weight: 300; font-variant-numeric: tabular-nums; font-size: 20px; letter-spacing: -0.02em; margin-left: auto; }
.lh-sticky .lh-btn { padding: 13px 24px; font-size: 10.5px; }
@media (max-width: 720px) {
  .lh-sticky-inner { padding: 10px 14px; gap: 10px; }
  .lh-sticky .who span { display: none; }
  .lh-sticky .who b { font-size: 11.5px; letter-spacing: 0.02em; }
  .lh-sticky .price { font-size: 15px; }
  .lh-sticky .lh-btn { padding: 11px 14px; font-size: 9.5px; letter-spacing: 0.08em; }
  .lh-sticky .lh-btn-line { display: none; }
}
@media (max-width: 430px) { .lh-sticky .who { display: none; } }

/* ══════════════════════════════════════════════════════════════════════════
   EDITORIAL / STATEMENT
   ══════════════════════════════════════════════════════════════════════════ */
.lh-band { padding: var(--lh-pad) var(--lh-gut); }
.lh-band.warm { background: var(--lh-warm); }
.lh-band.paper { background: var(--paper); }
.lh-band.night { background: var(--lh-night); color: #fff; }
.lh-band.tight { padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(56px, 7vw, 96px); }

.lh-statement { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
@media (min-width: 940px) { .lh-statement { grid-template-columns: 0.92fr 1.08fr; } }
.lh-statement-title {
  font-family: var(--display); font-weight: 200;
  font-size: clamp(30px, 4.4vw, 60px); line-height: 1.05; letter-spacing: -0.038em; margin: 0;
  text-wrap: balance;
}
.lh-statement-title em { font-style: normal; color: var(--teal); }
.lh-statement-body p { font-size: clamp(15.5px, 1.15vw, 17.5px); line-height: 1.82; color: #4A4D53; margin: 0 0 20px; }
.lh-statement-body p:last-child { margin-bottom: 0; }
.lh-statement-body p.first::first-letter {
  font-family: var(--display); font-weight: 300; font-size: 3.6em; line-height: 0.86;
  float: left; margin: 6px 12px 0 0; color: var(--teal);
}

/* Full-bleed image band */
.lh-bleed { position: relative; width: 100%; overflow: hidden; }
.lh-bleed img { width: 100%; height: clamp(300px, 68vh, 760px); object-fit: cover; display: block; }
.lh-bleed figcaption {
  position: absolute; left: var(--lh-gut); bottom: 24px; z-index: 2;
  font-family: var(--body); font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,0.6);
  padding-right: var(--lh-gut);
}
.lh-bleed::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.5) 100%); pointer-events: none; }

/* Duo split */
.lh-duo { display: grid; grid-template-columns: 1fr; gap: clamp(30px, 4.5vw, 70px); align-items: center; }
@media (min-width: 940px) { .lh-duo { grid-template-columns: 1fr 1fr; } .lh-duo.flip .lh-duo-col { order: 2; } }
.lh-duo-media { position: relative; border-radius: 4px; overflow: hidden; }
.lh-duo-media img { width: 100%; height: clamp(280px, 46vw, 620px); object-fit: cover; display: block; transition: transform 1200ms var(--ease); }
.lh-duo-media:hover img { transform: scale(1.035); }
.lh-duo-stack { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(8px, 0.8vw, 12px); margin-top: clamp(8px, 0.8vw, 12px); }
.lh-duo-stack figure { margin: 0; overflow: hidden; border-radius: 4px; }
.lh-duo-stack img { width: 100%; height: clamp(130px, 15vw, 230px); object-fit: cover; display: block; transition: transform 1100ms var(--ease); }
.lh-duo-stack figure:hover img { transform: scale(1.05); }
.lh-duo-col { display: block; }

/* ── Transformation / spec list ──────────────────────────────────────────── */
.lh-newlist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--lh-hair-d); border: 1px solid var(--lh-hair-d); border-radius: 6px; overflow: hidden; margin-top: clamp(30px, 4vw, 48px); }
@media (min-width: 700px) { .lh-newlist { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1080px) { .lh-newlist { grid-template-columns: repeat(5, 1fr); } }
.lh-newlist div {
  background: var(--lh-night-2); padding: 22px 20px;
  font-family: var(--body); font-size: 13.5px; font-weight: 400; color: rgba(255,255,255,0.9);
  display: flex; align-items: center; gap: 11px; letter-spacing: 0.01em;
}
.lh-newlist div::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px; flex: none;
  background: var(--lh-glow); box-shadow: 0 0 10px rgba(12,195,223,0.7);
}

/* ── Signature detail cards ──────────────────────────────────────────────── */
.lh-details { display: grid; grid-template-columns: 1fr; gap: clamp(18px, 2.4vw, 34px); margin-top: clamp(36px, 4vw, 58px); }
@media (min-width: 680px) { .lh-details { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .lh-details { grid-template-columns: repeat(3, 1fr); } }
.lh-detail { position: relative; }
.lh-detail-img { position: relative; overflow: hidden; border-radius: 4px; margin-bottom: 18px; }
.lh-detail-img img { width: 100%; height: clamp(220px, 24vw, 320px); object-fit: cover; display: block; transition: transform 1100ms var(--ease); }
.lh-detail:hover .lh-detail-img img { transform: scale(1.05); }
.lh-detail-n {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--body); font-size: 10px; font-weight: 600; letter-spacing: 0.16em;
  color: #fff; background: rgba(8,14,17,0.5); backdrop-filter: blur(8px);
  padding: 5px 10px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.2);
}
.lh-detail h4 { font-family: var(--display); font-weight: 400; font-size: 19px; letter-spacing: -0.015em; margin: 0 0 8px; color: var(--ink); }
.lh-detail p { font-size: 14.5px; line-height: 1.68; color: #63666C; margin: 0; }

/* ── Pull quote band ─────────────────────────────────────────────────────── */
.lh-quote { position: relative; padding: clamp(110px, 16vw, 220px) var(--lh-gut); overflow: hidden; color: #fff; text-align: center; }
.lh-quote-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; transform: scale(1.04); }
.lh-quote::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,10,13,0.58), rgba(4,10,13,0.72)); z-index: 1; }
.lh-quote-inner { position: relative; z-index: 2; max-width: 940px; margin: 0 auto; }
.lh-quote p {
  font-family: var(--display); font-weight: 200;
  font-size: clamp(24px, 3.6vw, 50px); line-height: 1.2; letter-spacing: -0.032em;
  margin: 0 0 22px; text-wrap: balance;
}
.lh-quote small { font-family: var(--body); font-size: 11px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.62); }

/* ══════════════════════════════════════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════════════════════════════════════ */
.lh-gal-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: clamp(28px, 3.4vw, 46px); }
.lh-gal {
  --gal-gap: clamp(8px, 0.9vw, 14px);
  --gal-w: min(calc(100vw - 2 * var(--lh-gut)), var(--lh-max));
  --gal-col: calc((var(--gal-w) - var(--gal-gap)) / 2);
  display: grid; grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: calc(var(--gal-col) / 1.5);
  grid-auto-flow: dense; gap: var(--gal-gap);
}
@media (min-width: 760px) {
  .lh-gal { grid-template-columns: repeat(4, 1fr);
            --gal-col: calc((var(--gal-w) - 3 * var(--gal-gap)) / 4); }
}
.lh-gal figure { position: relative; margin: 0; overflow: hidden; cursor: pointer; background: var(--grey-100); border-radius: 3px; }
.lh-gal figure img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1000ms var(--ease), filter 500ms; }
.lh-gal figure::after {
  content: ""; position: absolute; inset: 0; background: rgba(1,52,66,0);
  transition: background 380ms var(--ease);
}
.lh-gal figure:hover img { transform: scale(1.06); }
.lh-gal figure:hover::after { background: rgba(1,52,66,0.16); }
.lh-gal figure { grid-column: span 1; grid-row: span 1; }
.lh-gal figure.w2 { grid-column: span 2; grid-row: span 2; }
@media (max-width: 759px) { .lh-gal figure.w2 { grid-row: span 1; } }
.lh-gal-cap {
  position: absolute; left: 12px; bottom: 10px; z-index: 2; opacity: 0; transform: translateY(6px);
  font-family: var(--body); font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: #fff; text-shadow: 0 1px 10px rgba(0,0,0,0.7);
  transition: opacity 320ms, transform 320ms;
}
.lh-gal figure:hover .lh-gal-cap { opacity: 1; transform: none; }
.lh-gal-more { display: flex; justify-content: center; margin-top: clamp(28px, 3.4vw, 46px); gap: 12px; flex-wrap: wrap; }

/* Lightbox */
.lh-lb {
  position: fixed; inset: 0; z-index: 600; background: rgba(6,10,12,0.97);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 320ms var(--ease);
}
.lh-lb.on { opacity: 1; pointer-events: auto; }
.lh-lb img { max-width: 94vw; max-height: 84vh; object-fit: contain; display: block; box-shadow: 0 40px 100px -40px rgba(0,0,0,0.9); }
.lh-lb-bar {
  position: absolute; left: 0; right: 0; top: 0; padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,0.8);
  font-family: var(--body); font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
}
.lh-lb-x, .lh-lb-nav {
  width: 46px; height: 46px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.18); color: #fff;
  transition: background 220ms, transform 220ms; cursor: pointer;
}
.lh-lb-x:hover, .lh-lb-nav:hover { background: rgba(255,255,255,0.24); transform: scale(1.06); }
.lh-lb-nav { position: absolute; top: 50%; transform: translateY(-50%); }
.lh-lb-nav:hover { transform: translateY(-50%) scale(1.06); }
.lh-lb-nav.prev { left: clamp(10px, 3vw, 40px); }
.lh-lb-nav.next { right: clamp(10px, 3vw, 40px); }
.lh-lb-nav svg { width: 18px; height: 18px; }
.lh-lb-cap { position: absolute; left: 0; right: 0; bottom: 22px; text-align: center; color: rgba(255,255,255,0.62); font-family: var(--body); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; padding: 0 20px; }
@media (max-width: 640px) { .lh-lb-nav { width: 40px; height: 40px; } .lh-lb img { max-height: 72vh; } }

/* ══════════════════════════════════════════════════════════════════════════
   TOUR
   ══════════════════════════════════════════════════════════════════════════ */
.lh-tour-frame {
  position: relative; width: 100%; aspect-ratio: 16 / 9; min-height: 340px;
  border-radius: 6px; overflow: hidden; background: #0B1114;
  box-shadow: 0 50px 110px -50px rgba(0,0,0,0.8);
}
.lh-tour-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lh-tour-poster {
  position: absolute; inset: 0; z-index: 2; cursor: pointer;
  background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center;
  transition: opacity 500ms var(--ease);
}
.lh-tour-poster::after { content: ""; position: absolute; inset: 0; background: rgba(4,10,13,0.42); }
.lh-tour-poster.gone { opacity: 0; pointer-events: none; }
.lh-tour-play {
  position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 14px;
  padding: 20px 34px; border-radius: 999px; background: rgba(255,255,255,0.94); color: var(--ink);
  font-family: var(--body); font-size: 11.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  box-shadow: 0 24px 60px -24px rgba(0,0,0,0.7); transition: transform 300ms var(--ease), background 300ms;
}
.lh-tour-poster:hover .lh-tour-play { transform: scale(1.045); background: #fff; }
.lh-tour-play svg { width: 16px; height: 16px; }

/* ══════════════════════════════════════════════════════════════════════════
   SPECS TABLE
   ══════════════════════════════════════════════════════════════════════════ */
.lh-spec-grid { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 3.4vw, 56px); margin-top: clamp(30px, 3.6vw, 50px); }
@media (min-width: 900px) { .lh-spec-grid { grid-template-columns: repeat(2, 1fr); } }
.lh-spec-block h4 {
  font-family: var(--body); font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--teal); margin: 0 0 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--lh-hair);
}
.lh-spec-row { display: flex; gap: 18px; padding: 11px 0; border-bottom: 1px solid var(--lh-hair); font-size: 14.5px; }
.lh-spec-row dt { flex: 0 0 40%; color: var(--grey-500); margin: 0; }
.lh-spec-row dd { margin: 0; color: var(--ink); flex: 1; }
.lh-spec-block dl { margin: 0; }

.lh-plan { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: clamp(30px, 3.6vw, 50px); }
@media (min-width: 780px) { .lh-plan { grid-template-columns: 1fr 1fr; } }
.lh-plan figure { margin: 0; background: #fff; border: 1px solid var(--lh-hair); border-radius: 4px; padding: 18px; cursor: pointer; transition: box-shadow 320ms, transform 320ms; }
.lh-plan figure:hover { box-shadow: 0 24px 50px -30px rgba(3,22,29,0.4); transform: translateY(-2px); }
.lh-plan img { width: 100%; height: auto; display: block; }
.lh-plan figcaption { font-family: var(--body); font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey-500); margin-top: 14px; text-align: center; }

/* ══════════════════════════════════════════════════════════════════════════
   LOCATION
   ══════════════════════════════════════════════════════════════════════════ */
.lh-loc { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 4vw, 60px); align-items: start; }
@media (min-width: 940px) { .lh-loc { grid-template-columns: 1fr 1fr; } }
.lh-map { border-radius: 6px; overflow: hidden; border: 1px solid var(--lh-hair-d); aspect-ratio: 4 / 3; background: #0d1518; }
.lh-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.35) contrast(1.05); }
.lh-scores { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--lh-hair-d); border: 1px solid var(--lh-hair-d); border-radius: 6px; overflow: hidden; margin-top: 26px; }
.lh-score { background: var(--lh-night-2); padding: 18px 16px; text-align: center; }
.lh-score .n { font-family: var(--body); font-weight: 200; font-variant-numeric: tabular-nums; font-size: clamp(26px, 3vw, 38px); line-height: 1; color: #fff; }
.lh-score .n small { font-size: 0.42em; color: rgba(255,255,255,0.4); font-weight: 400; }
.lh-score .k { font-family: var(--body); font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 8px; }
.lh-schools { margin-top: 26px; }
.lh-schools .row { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--lh-hair-d); font-size: 14.5px; color: rgba(255,255,255,0.86); }
.lh-schools .row span { color: rgba(255,255,255,0.5); }

/* ══════════════════════════════════════════════════════════════════════════
   INQUIRY / AGENT
   ══════════════════════════════════════════════════════════════════════════ */
.lh-inq { display: grid; grid-template-columns: 1fr; gap: clamp(34px, 4.5vw, 70px); align-items: start; }
@media (min-width: 980px) { .lh-inq { grid-template-columns: 0.86fr 1.14fr; } }
.lh-agent-card { background: var(--paper); border: 1px solid var(--lh-hair); border-radius: 8px; padding: clamp(26px, 3vw, 38px); }
.lh-agent-top { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; }
.lh-agent-ball { width: 62px; height: 62px; border-radius: 999px; background: var(--teal-l); display: inline-flex; align-items: center; justify-content: center; flex: none; box-shadow: 0 10px 26px -12px rgba(0,120,141,0.5); }
.lh-agent-ball img { width: 44px; height: 44px; }
.lh-agent-top b { display: block; font-family: var(--display); font-weight: 500; font-size: 19px; letter-spacing: -0.01em; }
.lh-agent-top span { font-family: var(--body); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey-500); }
.lh-agent-card p { font-size: 15px; line-height: 1.72; color: #55585E; margin: 0 0 22px; }
.lh-agent-links { display: flex; flex-direction: column; gap: 10px; }
.lh-agent-links a {
  display: flex; align-items: center; gap: 13px; padding: 14px 18px;
  border: 1px solid var(--lh-hair); border-radius: 999px; font-size: 14.5px; color: var(--ink);
  transition: border-color 240ms, background 240ms, transform 240ms;
}
.lh-agent-links a:hover { border-color: var(--teal); background: var(--teal-l); transform: translateX(3px); }
.lh-agent-links svg { width: 17px; height: 17px; color: var(--teal); flex: none; }

.lh-form { background: var(--paper); border: 1px solid var(--lh-hair); border-radius: 8px; padding: clamp(26px, 3vw, 42px); box-shadow: 0 40px 90px -60px rgba(3,22,29,0.45); }
.lh-field { margin-bottom: 16px; }
.lh-field label { display: block; font-family: var(--body); font-size: 10.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey-500); margin-bottom: 8px; }
.lh-field input, .lh-field select, .lh-field textarea {
  width: 100%; padding: 15px 16px; border: 1px solid var(--lh-hair); border-radius: 6px;
  font-family: var(--body); font-size: 15px; color: var(--ink); background: var(--grey-50);
  transition: border-color 220ms, background 220ms, box-shadow 220ms;
}
.lh-field textarea { min-height: 108px; resize: vertical; }
.lh-field input:focus, .lh-field select:focus, .lh-field textarea:focus {
  outline: none; border-color: var(--teal); background: #fff; box-shadow: 0 0 0 4px rgba(0,120,141,0.10);
}
.lh-field-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 620px) { .lh-field-row { grid-template-columns: 1fr 1fr; } }
.lh-consent { display: flex; gap: 11px; align-items: flex-start; font-size: 12.5px; line-height: 1.6; color: var(--grey-500); margin: 6px 0 20px; }
.lh-consent input { margin-top: 3px; flex: none; width: 15px; height: 15px; accent-color: var(--teal); }
.lh-consent a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }
.lh-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.lh-form .lh-btn { width: 100%; }
.lh-success { display: none; text-align: center; padding: 24px 6px; }
.lh-success.show { display: block; }
.lh-success .tick { width: 62px; height: 62px; border-radius: 999px; background: var(--teal-l); color: var(--teal); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.lh-success .tick svg { width: 28px; height: 28px; }
.lh-success h3 { font-family: var(--display); font-weight: 400; font-size: 25px; margin: 0 0 10px; letter-spacing: -0.02em; }
.lh-success p { font-size: 15px; color: var(--grey-500); margin: 0 auto 22px; max-width: 44ch; line-height: 1.7; }

/* ══════════════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════════════ */
.lh-foot { background: var(--lh-night); color: rgba(255,255,255,0.6); padding: clamp(58px, 7vw, 96px) var(--lh-gut) 40px; }
.lh-foot-inner { max-width: var(--lh-max); margin: 0 auto; }
.lh-foot-top { display: flex; flex-wrap: wrap; gap: 30px; align-items: flex-start; justify-content: space-between; padding-bottom: 34px; border-bottom: 1px solid var(--lh-hair-d); }
.lh-foot-lock { display: inline-flex; align-items: center; gap: 13px; }
.lh-foot-lock img { width: 42px; height: 42px; }
.lh-foot-mark { font-family: var(--display); font-weight: 500; font-size: 14px; letter-spacing: 0.18em; color: rgba(255,255,255,0.95); text-transform: uppercase; line-height: 1.15; }
.lh-foot-mark small { display: block; font-family: var(--body); font-size: 10px; font-weight: 400; letter-spacing: 0.22em; color: rgba(255,255,255,0.5); margin-top: 5px; }
.lh-foot-contact { display: flex; flex-wrap: wrap; gap: 10px 26px; font-size: 14px; }
.lh-foot-contact a { color: rgba(255,255,255,0.82); transition: color 220ms; }
.lh-foot-contact a:hover { color: var(--lh-glow); }
.lh-foot-legal { padding-top: 28px; font-size: 12px; line-height: 1.8; color: rgba(255,255,255,0.42); max-width: 100ch; }
.lh-foot-legal a { color: rgba(255,255,255,0.62); text-decoration: underline; text-underline-offset: 2px; }
.lh-foot-links { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 18px; font-size: 12px; }
.lh-foot-links a { color: rgba(255,255,255,0.62); transition: color 220ms; }
.lh-foot-links a:hover { color: #fff; }
.lh-mls { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 12px; font-family: var(--body); font-size: 10.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.lh-mls i { width: 5px; height: 5px; border-radius: 999px; background: var(--lh-glow); }

/* Floating WhatsApp */
.lh-wa {
  opacity: 0; pointer-events: none;
  transition: transform 260ms var(--ease), opacity 320ms var(--ease);
  position: fixed; right: 18px; bottom: 96px; z-index: 370;
  width: 54px; height: 54px; border-radius: 999px; background: #25D366; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 34px -12px rgba(37,211,102,0.75); transition: transform 260ms var(--ease);
}
.lh-wa.on { opacity: 1; pointer-events: auto; }
.lh-wa:hover { transform: scale(1.08); }
.lh-wa svg { width: 27px; height: 27px; }
@media (max-width: 720px) { .lh-wa { width: 48px; height: 48px; bottom: 78px; right: 14px; } .lh-wa svg { width: 24px; height: 24px; } }

/* Motion-safety */
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .lh-hero-media .slide.on { animation: none; transform: none; }
  .lh-scroll-cue { animation: none; }
  html { scroll-behavior: auto; }
}
