/* TBL Listings POC — editorial / luxury */

:root {
  --stone-50: #FAF7F2;
  --stone-100: #F5F1EB;
  --stone-200: #E8DFD3;
  --stone-300: #D6C9B5;
  --stone-500: #8A7E6B;
  --stone-700: #4A4339;
  --stone-900: #2C2A26;
  --ink: #1A1916;
  --line: #E0D8CB;
  --navy: #0F1F3D;
  --navy-2: #142A52;
  --gold: #C99B2D;
  --gold-2: #B8881F;
  --max: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 6px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--stone-900);
  background: var(--stone-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

/* TYPOGRAPHY */
.section-title, .hero-address, .financing-title, .leads-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.section-title { font-size: clamp(28px, 4vw, 44px); margin: 0 0 24px; }
.section-eyebrow, .leads-eyebrow, .financing-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-500);
  margin-bottom: 14px;
}

/* TOP NAV */
.topnav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.topnav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 16px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 36px; height: 36px;
  border: 1.5px solid var(--stone-900);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 600; font-size: 14px;
  letter-spacing: 0.04em;
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 19px; letter-spacing: 0.01em;
}
.topnav-links { display: flex; align-items: center; gap: 28px; }
.topnav-links a {
  font-size: 14px; color: var(--stone-700);
  transition: color 0.15s;
}
.topnav-links a:hover { color: var(--stone-900); }
.topnav-cta {
  background: var(--stone-900); color: var(--stone-50) !important;
  padding: 10px 18px; border-radius: var(--radius);
  font-weight: 500;
}
.topnav-cta:hover { background: var(--ink); }
@media (max-width: 768px) {
  .topnav-links a:not(.topnav-cta) { display: none; }
}

/* HERO */
.hero {
  position: relative;
  height: clamp(520px, 88vh, 880px);
  background: var(--stone-900);
  overflow: hidden;
}
.hero-stage { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.45s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff; font-size: 20px;
  border-radius: 50%;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.2s;
  z-index: 3;
}
.hero-arrow:hover { background: rgba(255,255,255,0.25); }
.hero-arrow-prev { left: clamp(16px, 3vw, 32px); }
.hero-arrow-next { right: clamp(16px, 3vw, 32px); }
.hero-counter {
  position: absolute; top: clamp(16px, 3vw, 28px); right: clamp(16px, 3vw, 28px);
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 500;
  color: #fff;
  background: rgba(0,0,0,0.65);
  padding: 8px 14px; border-radius: 999px;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3;
}
.hero-viewall {
  position: absolute; bottom: clamp(20px, 3vw, 32px); right: clamp(16px, 3vw, 32px);
  background: rgba(255,255,255,0.95);
  color: var(--stone-900);
  padding: 12px 22px; border-radius: 999px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em;
  z-index: 3;
  transition: background 0.2s;
}
.hero-viewall:hover { background: #fff; }
.hero-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: clamp(28px, 5vw, 64px) var(--gutter);
  z-index: 2;
}
.hero-overlay-inner { max-width: var(--max); margin: 0 auto; color: #fff; }
.hero-eyebrow {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.85; margin-bottom: 14px;
}
.hero-address {
  font-size: clamp(36px, 6vw, 72px);
  margin: 0 0 6px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.hero-citystate {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 400; opacity: 0.95;
  margin-bottom: 18px;
}
.hero-price {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: 0.02em;
  border-top: 1px solid rgba(255,255,255,0.5);
  padding-top: 14px;
}

/* QUICKSTATS */
.quickstats {
  border-bottom: 1px solid var(--line);
  background: var(--stone-50);
}
.quickstats-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding: 32px 0;
  text-align: center;
}
.qs-cell + .qs-cell { border-left: 1px solid var(--line); }
.qs-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
  color: var(--stone-900);
  margin-bottom: 4px;
}
.qs-lbl {
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--stone-500);
}
@media (max-width: 720px) {
  .quickstats-row { grid-template-columns: repeat(3, 1fr); gap: 24px 0; padding: 24px 0; }
  .qs-cell + .qs-cell { border: none; }
}

/* MAIN GRID */
.main { padding: clamp(48px, 8vw, 96px) 0; }
.main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.main-col { min-width: 0; }
.section { margin-bottom: clamp(48px, 7vw, 88px); }
.section-lede {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.65;
  color: var(--stone-700);
  max-width: 65ch;
}

/* FEATURES */
.features-list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
}
.features-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15.5px;
  color: var(--stone-700);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; flex-shrink: 0;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  font-size: 12px; margin-top: 2px;
}
@media (max-width: 640px) { .features-list { grid-template-columns: 1fr; } }

/* GALLERY (horizontal rail) */
.gallery-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 28px;
  gap: 24px;
}
.gallery-head .section-title { margin-bottom: 0; }
.gallery-controls { display: flex; gap: 8px; flex-shrink: 0; }
.rail-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--stone-300);
  background: #fff;
  color: var(--stone-700);
  font-size: 16px;
  transition: all 0.15s;
}
.rail-arrow:hover { border-color: var(--stone-900); color: var(--stone-900); background: var(--stone-100); }
.rail-arrow:disabled { opacity: 0.35; cursor: not-allowed; }

.rail-wrap {
  margin: 0 0 clamp(48px, 7vw, 88px);
}
.thumb-rail {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0 var(--gutter) 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--stone-300) transparent;
}
.thumb-rail::-webkit-scrollbar { height: 6px; }
.thumb-rail::-webkit-scrollbar-track { background: transparent; }
.thumb-rail::-webkit-scrollbar-thumb { background: var(--stone-300); border-radius: 999px; }
.rail-thumb {
  flex: 0 0 auto;
  position: relative;
  width: 360px;
  aspect-ratio: 4/3;
  padding: 0;
  border-radius: 4px;
  overflow: hidden;
  background: var(--stone-200);
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
}
.rail-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.rail-thumb:hover img { transform: scale(1.04); }
.rail-thumb:hover { box-shadow: 0 16px 40px rgba(44,42,38,0.14); }
.rail-num {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.12em;
  padding: 4px 8px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}
.rail-cta { margin-bottom: clamp(48px, 7vw, 88px); }
@media (max-width: 720px) {
  .rail-thumb { width: 78vw; }
  .gallery-controls { display: none; }
}

/* FACTS TABLE */
.facts {
  width: 100%; border-collapse: collapse;
  font-size: 15px;
}
.facts tr { border-bottom: 1px solid var(--line); }
.facts th, .facts td { padding: 14px 0; text-align: left; }
.facts th {
  font-weight: 400;
  color: var(--stone-500);
  width: 40%;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.facts td { color: var(--stone-900); font-weight: 500; }

/* MAP */
.map-wrap {
  border-radius: 4px; overflow: hidden;
  border: 1px solid var(--line);
  background: #EFE9DD;
  position: relative;
}
.map-svg { display: block; width: 100%; height: auto; }
.map-cap {
  padding: 14px 20px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone-500);
  background: #fff;
  border-top: 1px solid var(--line);
}

/* AGENT RAIL */
.agent-rail { position: sticky; top: 96px; }
.agent-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px 28px;
  text-align: center;
}
.agent-photo {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--stone-100);
  border: 1px solid var(--stone-200);
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
}
.agent-initials {
  font-family: 'Playfair Display', serif;
  font-size: 28px; color: var(--stone-700);
}
.agent-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px; margin-bottom: 4px;
}
.agent-title { font-size: 13px; color: var(--stone-500); letter-spacing: 0.06em; text-transform: uppercase; }
.agent-broker { font-size: 14px; color: var(--stone-700); margin-top: 4px; }
.agent-meta {
  margin: 18px 0 22px;
  display: flex; flex-direction: column; gap: 6px;
  padding-top: 18px; border-top: 1px solid var(--line);
}
.agent-link { font-size: 14px; color: var(--stone-700); }
.agent-link:hover { color: var(--stone-900); text-decoration: underline; }
@media (max-width: 960px) {
  .main-grid { grid-template-columns: 1fr; }
  .agent-rail { position: static; max-width: 480px; margin: 0 auto; }
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.03em;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-block { width: 100%; }
.btn-primary { background: var(--stone-900); color: var(--stone-50); }
.btn-primary:hover { background: var(--ink); }
.btn-ghost { background: transparent; color: var(--stone-700); border: 1px solid var(--line); margin-top: 10px; }
.btn-ghost:hover { background: var(--stone-100); color: var(--stone-900); }
.btn-outline { background: transparent; color: var(--stone-900); border: 1px solid var(--stone-900); }
.btn-outline:hover { background: var(--stone-900); color: var(--stone-50); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-2); }

/* FINANCING SECTION */
.financing {
  background: var(--navy);
  color: #fff;
  padding: clamp(60px, 9vw, 120px) 0;
  position: relative;
}
.financing::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
}
.financing-eyebrow { color: var(--gold); }
.financing-title {
  font-size: clamp(32px, 4.5vw, 52px);
  margin: 0 0 16px;
  color: #fff;
}
.financing-lede {
  max-width: 60ch;
  font-size: 16px;
  color: rgba(255,255,255,0.75);
}
.financing-head { text-align: center; margin-bottom: 56px; }
.financing-head .financing-lede { margin-left: auto; margin-right: auto; }

.financing-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}
@media (max-width: 960px) { .financing-grid { grid-template-columns: 1fr; } }

.calc-card {
  background: var(--navy-2);
  border: 1px solid rgba(201,155,45,0.2);
  border-radius: 8px;
  padding: 32px;
}
.calc-row { margin-bottom: 22px; }
.calc-row label {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 10px;
}
.calc-label {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.calc-value {
  font-family: 'Playfair Display', serif;
  font-size: 19px; color: var(--gold);
}
.calc-row input[type=range] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
  outline: none;
}
.calc-row input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px;
  background: var(--gold); border-radius: 50%;
  cursor: pointer; border: 2px solid var(--navy);
  box-shadow: 0 0 0 1px var(--gold);
}
.calc-row input[type=range]::-moz-range-thumb {
  width: 18px; height: 18px;
  background: var(--gold); border-radius: 50%;
  cursor: pointer; border: 2px solid var(--navy);
}
.seg {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px; overflow: hidden;
}
.seg-btn {
  padding: 10px 0;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.75);
  background: transparent;
  border-right: 1px solid rgba(255,255,255,0.18);
  transition: background 0.15s, color 0.15s;
}
.seg-btn:last-child { border-right: none; }
.seg-btn.is-active { background: var(--gold); color: var(--navy); font-weight: 600; }
.seg-btn:hover:not(.is-active) { background: rgba(255,255,255,0.06); color: #fff; }
.calc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-bottom: 24px;
}
.calc-num { display: flex; flex-direction: column; gap: 6px; }
.calc-num span {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.calc-num input {
  background: var(--navy);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 15px;
  width: 100%;
}
.calc-num input:focus { border-color: var(--gold); outline: none; }
.calc-result {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 22px;
}
.calc-total { text-align: center; margin-bottom: 18px; }
.calc-total-label {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-bottom: 6px;
}
.calc-total-value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 48px);
  color: var(--gold);
  font-weight: 500;
}
.calc-breakdown {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.calc-breakdown div { display: flex; justify-content: space-between; }
.calc-breakdown span:last-child { color: var(--gold); font-weight: 500; }

.scenarios-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px; margin-bottom: 20px;
  color: #fff;
}
.scenario-cards {
  display: grid;
  gap: 12px;
}
.scenario {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 110px 1fr 1fr;
  gap: 16px;
  align-items: center;
}
.scenario-pct {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--gold);
}
.scenario-cash, .scenario-mo {
  display: flex; flex-direction: column; gap: 4px;
}
.sc-amount {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #fff;
  font-weight: 500;
  line-height: 1.05;
  white-space: nowrap;
}
.sc-cash-lbl, .sc-mo-lbl, .scenario-loan {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}
.scenario-loan { grid-column: 1 / -1; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 4px; }
@media (max-width: 540px) { .scenario { grid-template-columns: 1fr; gap: 6px; text-align: left; } .scenario-loan { padding-top: 6px; } }

.lo-card {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(201,155,45,0.3);
  border-radius: 8px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}
.lo-photo {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 600;
}
.lo-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px; color: #fff;
}
.lo-title { font-size: 14px; color: rgba(255,255,255,0.8); margin: 2px 0 6px; }
.lo-meta { font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; }
@media (max-width: 720px) {
  .lo-card { grid-template-columns: 1fr; text-align: center; }
}

/* LEADS */
.leads { padding: clamp(60px, 8vw, 96px) 0; background: var(--stone-100); }
.leads-eyebrow { text-align: center; color: var(--stone-500); }
.leads-title { font-size: clamp(28px, 4vw, 42px); text-align: center; margin: 0 0 48px; }
.leads-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 760px) { .leads-grid { grid-template-columns: 1fr; } }
.lead-btn {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px 28px;
  text-align: left;
  display: flex; flex-direction: column; gap: 6px;
  transition: all 0.2s;
}
.lead-btn:hover {
  border-color: var(--stone-900);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(44,42,38,0.08);
}
.lead-btn-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--stone-100);
  color: var(--gold);
  margin-bottom: 14px;
  font-size: 18px;
}
.lead-btn-title { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--stone-900); }
.lead-btn-sub { font-size: 14px; color: var(--stone-500); }

/* FOOTER */
.footer {
  background: var(--stone-900);
  color: var(--stone-200);
  padding: 48px 0 32px;
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 32px;
  align-items: center;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 22px; color: #fff;
  margin-bottom: 4px;
}
.footer-meta { color: var(--stone-300); line-height: 1.55; }
.footer-eho { display: flex; align-items: center; gap: 10px; }
.eho-mark {
  width: 32px; height: 32px;
  border: 1px solid var(--stone-300);
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 4px;
  font-size: 16px;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
}

/* LIGHTBOX */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(15, 14, 12, 0.96);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
}
.lightbox[hidden] { display: none !important; }
.lb-stage {
  max-width: 92vw; max-height: 88vh;
  display: flex; align-items: center; justify-content: center;
}
.lb-stage img { max-width: 100%; max-height: 88vh; object-fit: contain; }
.lb-close {
  position: absolute; top: 24px; right: 32px;
  font-size: 36px; color: #fff;
  width: 44px; height: 44px;
}
.lb-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff; font-size: 22px;
}
.lb-arrow:hover { background: rgba(255,255,255,0.18); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.85); font-family: 'Playfair Display', serif;
  font-size: 14px; letter-spacing: 0.1em;
}
@media (max-width: 640px) {
  .lb-arrow { width: 44px; height: 44px; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
}
