/* ============ Reset & base ============ */
*,*::before,*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #F7F4EE;
  color: #14212F;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  padding-top: 34px;
}

/* ============ Demo banner ============ */
.demo-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 34px;
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 0 16px;
  background: linear-gradient(90deg, #14274A 0%, #1E3358 50%, #14274A 100%);
  color: #F2E8CF;
  font-size: 12px; letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(184,146,61,0.4);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.demo-banner-pill {
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 800; font-size: 10.5px;
  letter-spacing: 0.22em;
  padding: 3px 9px; border-radius: 999px;
}
.demo-banner-text {
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
@media (max-width: 560px) {
  .demo-banner { font-size: 11px; }
  .demo-banner-text { font-size: 10.5px; }
}
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

:root {
  --navy: #14274A;
  --navy-deep: #0B1A36;
  --navy-soft: #2C436A;
  --gold: #B8923D;
  --gold-soft: #D4B061;
  --gold-mist: rgba(184,146,61,0.10);
  --cream: #F7F4EE;
  --paper: #FBF9F3;
  --ink: #14212F;
  --ink-soft: #4B5562;
  --dim: #8A8E96;
  --line: #E4DFD3;
  --line-soft: #EFEAE0;
}

/* ============ Screens ============ */
.screen { display: none; min-height: 100vh; }
.screen.active { display: block; }

/* ============ Topbar ============ */
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  background: var(--navy);
  color: #fff;
  position: sticky; top: 34px; z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  display: grid; place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700; font-size: 18px;
  color: var(--navy-deep);
  letter-spacing: -0.02em;
}
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; line-height: 1;
  letter-spacing: -0.01em;
}
.brand-builder {
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.topnav { display: flex; gap: 8px; align-items: center; }
.navlink {
  background: transparent; border: 1px solid transparent;
  color: rgba(255,255,255,0.85);
  padding: 9px 16px; border-radius: 999px;
  font-size: 12px; letter-spacing: 0.06em;
  font-weight: 600;
  transition: all 160ms ease;
}
.navlink:hover { color: #fff; background: rgba(255,255,255,0.08); }
.navlink.active { color: var(--gold-soft); border-color: rgba(212,176,97,0.35); }
.navlink.primary {
  background: var(--gold); color: var(--navy-deep);
  border-color: var(--gold);
}
.navlink.primary:hover { background: var(--gold-soft); }
.navlink.back-to-pikit {
  text-decoration: none;
  color: rgba(255,255,255,0.55);
  border-color: rgba(255,255,255,0.18);
  font-size: 11px;
}
.navlink.back-to-pikit:hover { color: #fff; background: rgba(255,255,255,0.10); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid transparent;
  padding: 11px 20px; border-radius: 999px;
  font-size: 13px; letter-spacing: 0.04em; font-weight: 600;
  transition: all 160ms ease;
  text-decoration: none;
}
.btn.big { padding: 14px 26px; font-size: 14px; }
.btn-primary {
  background: var(--gold); color: var(--navy-deep);
  box-shadow: 0 8px 18px rgba(184,146,61,0.25);
}
.btn-primary:hover { background: var(--gold-soft); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: #fff; }

/* ============ Hero ============ */
.hero-wrap {
  min-height: calc(100vh - 80px);
  background:
    radial-gradient(ellipse 120% 80% at 50% 100%, rgba(184,146,61,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 100% 70% at 50% 0%, rgba(20,39,74,0.08) 0%, transparent 70%),
    var(--cream);
  display: grid; place-items: center;
  padding: 80px 32px;
  position: relative;
}
.hero-inner { max-width: 920px; text-align: center; }
.hero-eyebrow {
  font-size: 11px; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 700; margin-bottom: 28px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95; font-weight: 500;
  margin: 0 0 30px;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.hero-title em { font-style: italic; color: var(--gold); font-weight: 500; }
.hero-sub {
  font-size: clamp(15px, 1.5vw, 19px);
  color: var(--ink-soft);
  max-width: 720px; margin: 0 auto 36px;
  line-height: 1.65;
}
.hero-cta-row {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 56px;
}
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; max-width: 720px; margin: 0 auto;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.hero-stats > div { display: flex; flex-direction: column; gap: 4px; }
.hs-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; color: var(--navy);
  font-weight: 600; line-height: 1;
}
.hs-label {
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--dim);
  font-weight: 600;
}

/* ============ Tour Recap (hero) ============ */
.tour-recap {
  margin: 4px auto 48px;
  max-width: 1100px;
  text-align: left;
  background: linear-gradient(180deg, #FFFFFF 0%, #FBF9F3 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 32px 28px;
  box-shadow: 0 20px 50px rgba(15,25,40,0.08);
}
.tour-recap-head { margin-bottom: 22px; }
.trh-eyebrow {
  font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 700; margin-bottom: 10px;
}
.trh-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.1; font-weight: 500;
  margin: 0 0 8px; color: var(--navy);
  letter-spacing: -0.015em;
}
.trh-sub {
  font-size: 14.5px; color: var(--ink-soft);
  margin: 0; max-width: 720px;
}

.recap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.recap-card {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  display: flex; flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.recap-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-soft);
  box-shadow: 0 18px 36px rgba(20,33,47,0.12);
}
.recap-card.rank-1 { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-mist), 0 12px 30px rgba(184,146,61,0.18); }

.recap-rank {
  position: absolute; top: 12px; left: 12px;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(20,33,47,0.92);
  color: #fff;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
}
.recap-card.rank-1 .recap-rank { background: var(--gold); color: var(--navy-deep); }
.recap-rank-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px; letter-spacing: 0;
}

.recap-photo-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(180deg, #E9EEF3 0%, #D6DFE6 100%);
  overflow: hidden;
}
.recap-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 65%;
  display: block;
  transition: transform 400ms cubic-bezier(0.2,0.7,0.3,1);
}
.recap-card:hover .recap-photo { transform: scale(1.04); }
.recap-photo-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,25,40,0.28) 0%, rgba(15,25,40,0) 35%);
  pointer-events: none;
}

.recap-body { padding: 16px 18px 14px; }
.recap-lot {
  font-size: 10.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 700; margin-bottom: 4px;
}
.recap-plan {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; line-height: 1.1;
  color: var(--navy); margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.recap-meta {
  font-size: 12px; color: var(--ink-soft);
  margin-bottom: 12px;
  display: flex; gap: 10px; flex-wrap: wrap;
}
.recap-meta span { display: inline-flex; align-items: center; gap: 4px; }
.recap-meta b { color: var(--navy); font-weight: 700; }

.recap-fit-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 11px; color: var(--dim);
  letter-spacing: 0.06em; margin-bottom: 6px;
}
.recap-fit-row b { color: var(--navy); font-weight: 700; font-size: 12px; }
.recap-fit-bar {
  height: 4px; border-radius: 999px;
  background: var(--line-soft); overflow: hidden;
  margin-bottom: 14px;
}
.recap-fit-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, #d6b264 100%);
  border-radius: 999px;
}

.recap-note {
  font-size: 12px; color: var(--ink-soft);
  line-height: 1.5;
  padding: 10px 12px;
  background: var(--paper);
  border-radius: 8px;
  margin-bottom: 14px;
  border-left: 2px solid var(--gold);
}

.recap-cta {
  background: var(--navy);
  color: #fff;
  padding: 11px 14px;
  border: none; border-radius: 8px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 160ms ease;
}
.recap-cta:hover { background: var(--navy-deep); }
.recap-card.rank-1 .recap-cta { background: var(--gold); color: var(--navy-deep); }
.recap-card.rank-1 .recap-cta:hover { background: var(--gold-soft); }

.recap-foot {
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px; flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px; color: var(--ink-soft);
}

@media (max-width: 900px) {
  .recap-grid { grid-template-columns: 1fr; gap: 14px; }
  .tour-recap { padding: 24px 20px; }
}
@media (max-width: 720px) {
  .tour-recap { padding: 22px 16px; border-radius: 14px; margin-bottom: 36px; }
  .trh-title { font-size: clamp(22px, 6vw, 28px); }
  .recap-plan { font-size: 22px; }
  .recap-foot { flex-direction: column; align-items: stretch; text-align: center; }
  .recap-foot .btn { width: 100%; justify-content: center; }
}

/* ============ About ============ */
.about-wrap {
  max-width: 1200px; margin: 0 auto;
  padding: 80px 32px;
}
.about-eyebrow {
  font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 700; margin-bottom: 18px;
}
.about-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05; font-weight: 500;
  margin: 0 0 48px;
  letter-spacing: -0.015em;
  color: var(--navy);
  max-width: 900px;
}
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; }
.about-col p {
  font-size: 16px; color: var(--ink-soft);
  line-height: 1.75; margin: 0 0 20px;
}
.about-col p strong { color: var(--navy); font-weight: 600; }
.about-col .btn { margin-top: 18px; }
.about-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 26px;
}
.ac-eyebrow {
  font-size: 10.5px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 700; margin-bottom: 18px;
}
.ac-list { list-style: none; padding: 0; margin: 0; }
.ac-list li {
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 14px; color: var(--ink-soft);
}
.ac-list li:first-child { border-top: 0; }
.ac-list li b { color: var(--navy); font-weight: 600; }

/* ============ Map ============ */
.map-wrap { max-width: 1320px; margin: 0 auto; padding: 40px 24px 60px; }
.map-head { margin-bottom: 28px; }
.map-eyebrow {
  font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 700; margin-bottom: 14px;
}
.map-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 46px);
  margin: 0 0 10px;
  letter-spacing: -0.015em;
  color: var(--navy);
}
.map-sub {
  font-size: 15px; color: var(--ink-soft);
  margin: 0 0 18px; max-width: 720px;
}
.legend { display: flex; gap: 18px; flex-wrap: wrap; }
.legend-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--ink-soft);
  font-weight: 600;
}
.dot {
  width: 14px; height: 14px; border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.1);
}
.dot-forrester { background: #6FA8C9; }
.dot-harbor    { background: #C28A4A; }
.dot-model     { background: var(--gold); border-color: var(--gold-soft); }

.map-frame {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #FBF9F3;
  box-shadow: 0 18px 40px rgba(20,33,47,0.08);
}
#map-img { display: block; width: 100%; height: auto; }

.lot-popover {
  position: absolute;
  display: none;
  z-index: 30;
  min-width: 240px;
  max-width: 280px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 18px 36px rgba(20,33,47,0.22);
  pointer-events: auto;
  transform: translate(-50%, calc(-100% - 14px));
}
.lot-popover.show { display: block; }
.lot-popover::after {
  content: ""; position: absolute;
  left: 50%; bottom: -7px; transform: translateX(-50%) rotate(45deg);
  width: 14px; height: 14px;
  background: #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pop-lot {
  font-size: 10.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 700; margin-bottom: 4px;
}
.pop-plan {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; color: var(--navy);
  letter-spacing: -0.01em; line-height: 1.1;
  margin: 0 0 4px;
}
.pop-meta {
  font-size: 12px; color: var(--ink-soft);
  margin-bottom: 12px;
}
.pop-price {
  display: flex; justify-content: space-between;
  align-items: baseline;
  font-size: 13px; color: var(--dim);
  border-top: 1px solid var(--line-soft);
  padding-top: 10px; margin-bottom: 12px;
}
.pop-price b { color: var(--navy); font-weight: 700; font-size: 15px; }
.pop-btn-row { display: flex; gap: 8px; }
.pop-btn-row .btn { flex: 1; padding: 9px 12px; font-size: 12px; justify-content: center; }

/* ============ Lot Picker (below map) ============ */
.lot-picker {
  margin-top: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(20,33,47,0.06);
  padding: 18px 22px;
}
.lot-picker-row {
  display: flex; align-items: center; gap: 22px;
  flex-wrap: wrap;
}
.lp-label { flex: 0 0 auto; min-width: 0; }
.lp-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 2px;
}
.lp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; color: var(--navy);
  margin: 0; line-height: 1.1;
}
.lp-tabs {
  display: inline-flex; gap: 4px;
  background: #FBF9F3;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  flex: 0 0 auto;
}
.lp-tab {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px;
  background: transparent;
  border: none;
  border-radius: 999px;
  font-size: 12px; font-weight: 600; color: var(--ink);
  cursor: pointer;
  transition: all 140ms ease;
  white-space: nowrap;
}
.lp-tab em {
  font-style: normal; font-weight: 700;
  color: var(--dim); margin-left: 2px;
  font-size: 11px;
}
.lp-tab:hover { color: var(--navy); }
.lp-tab.active {
  background: var(--navy); color: #fff;
  box-shadow: 0 2px 6px rgba(20,33,47,0.18);
}
.lp-tab.active em { color: rgba(255,255,255,0.75); }
.lp-swatch {
  width: 11px; height: 11px; border-radius: 3px;
  border: 1px solid rgba(0,0,0,0.15);
}
.lp-swatch.forrester { background: #94BBD6; border-color: #456E8C; }
.lp-swatch.harbor    { background: #DDB07A; border-color: #A06A2A; }

.lp-controls {
  display: inline-flex; align-items: center; gap: 10px;
  margin-left: auto;
  flex: 0 0 auto;
}
.lp-select-wrap {
  position: relative;
  display: inline-flex; align-items: center;
}
.lp-select {
  appearance: none; -webkit-appearance: none;
  background: #FBF9F3;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 36px 11px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  min-width: 250px;
  transition: border-color 140ms ease;
}
.lp-select:hover { border-color: var(--gold-soft); }
.lp-select:focus { outline: none; border-color: var(--gold); }
.lp-caret {
  position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--ink-soft);
}
.lp-controls .btn { padding: 11px 18px; font-size: 13px; }
.lp-controls .btn[disabled] { opacity: 0.45; cursor: not-allowed; pointer-events: none; }

@media (max-width: 880px) {
  .lot-picker-row { gap: 14px; }
  .lp-controls { width: 100%; }
  .lp-select { min-width: 0; flex: 1; }
}

/* Click overlay on map */
.map-click-overlay {
  position: absolute; inset: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 0 0 16px;
  transition: background 200ms ease;
}
.map-click-overlay:hover { background: rgba(20,33,47,0.06); }
.moc-hint {
  display: inline-block;
  padding: 8px 14px;
  background: rgba(20,33,47,0.85);
  color: #fff;
  border-radius: 999px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 200ms ease, transform 200ms ease;
  pointer-events: none;
}
.map-click-overlay:hover .moc-hint { opacity: 1; transform: translateY(0); }

/* ============ Designer ============ */
.designer-wrap { max-width: 1320px; margin: 0 auto; padding: 40px 32px 80px; }
.designer-head {
  display: grid; grid-template-columns: 1.45fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

/* ---- Left column ---- */
.dh-hero {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 22px;
  background: linear-gradient(180deg, #E9EEF3 0%, #D6DFE6 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 14px 38px rgba(15,25,40,0.18);
}
.dh-hero-img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 65%;
}
.dh-hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,25,40,0.32) 0%, rgba(15,25,40,0) 35%, rgba(15,25,40,0) 70%, rgba(15,25,40,0.18) 100%);
  pointer-events: none;
}
.dh-hero-meta {
  position: absolute;
  top: 14px; left: 14px;
  display: flex; gap: 8px; flex-wrap: wrap;
  z-index: 2;
}
.dh-hero-meta .dh-chip {
  box-shadow: 0 2px 8px rgba(15,25,40,0.25);
}
.dh-meta-row {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 18px;
}
.dh-chip {
  display: inline-flex; align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 700;
}
.dh-chip-lot {
  background: var(--navy);
  color: #fff;
}
.dh-chip-mode {
  background: var(--gold-mist);
  color: var(--navy);
  border: 1px solid rgba(184,146,61,0.35);
}
.dh-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5.4vw, 72px);
  font-weight: 500;
  margin: 0 0 14px;
  letter-spacing: -0.022em;
  color: var(--navy);
  line-height: 1;
}
.dh-sub {
  font-size: 15.5px; color: var(--ink-soft);
  max-width: 540px; line-height: 1.6;
  margin: 0 0 28px;
}
.dh-price-row {
  display: flex; align-items: baseline; gap: 10px;
  margin: -2px 0 18px;
}
.dh-price-lbl {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--dim);
  font-weight: 700;
}
.dh-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; color: var(--navy);
  font-weight: 600; letter-spacing: -0.01em;
}

/* Stat tiles */
.dh-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}
.dh-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 12px 12px;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.dh-stat::before {
  content: ""; position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--gold);
  opacity: 0.0; transition: opacity 200ms ease;
}
.dh-stat:hover::before { opacity: 1; }
.dh-stat svg {
  width: 20px; height: 20px;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.dh-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 600;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.01em;
}
.dh-stat-lbl {
  font-size: 10.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--dim);
  font-weight: 700; margin-top: 6px;
}

.dh-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* ---- Right column: Build Sheet card ---- */
.dh-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 22px 18px;
  position: sticky; top: 130px;
  box-shadow: 0 18px 40px rgba(15,25,40,0.06);
}
.dh-card-head {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}
.dh-card-eyebrow {
  font-size: 10px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 700; margin-bottom: 4px;
}
.dh-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; color: var(--navy);
  font-weight: 600; line-height: 1.1;
  letter-spacing: -0.01em;
}

/* Progress ring */
.dh-progress-ring {
  position: relative;
  width: 56px; height: 56px;
  flex-shrink: 0;
}
.dh-ring { width: 100%; height: 100%; transform: rotate(-90deg); }
.dh-ring-bg {
  fill: none;
  stroke: var(--line);
  stroke-width: 3;
}
.dh-ring-fg {
  fill: none;
  stroke: var(--gold);
  stroke-width: 3;
  stroke-linecap: round;
  transition: stroke-dasharray 400ms cubic-bezier(0.4,0,0.2,1);
}
.dh-ring-text {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; color: var(--navy);
  font-weight: 600;
}
.dh-ring-denom { color: var(--dim); font-size: 11px; margin-left: 1px; }

/* Thin horizontal progress bar (extra signal) */
.dh-card-progressbar {
  height: 3px;
  background: var(--line-soft);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 18px;
}
.dh-card-progressbar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, #d6b264 100%);
  border-radius: 999px;
  transition: width 400ms cubic-bezier(0.4,0,0.2,1);
}

/* Sections within build sheet */
.dh-section { margin-bottom: 14px; }
.dh-section:last-of-type { margin-bottom: 0; }
.dh-section-label {
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--dim);
  font-weight: 700; margin-bottom: 4px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-soft);
}

/* Selection rows */
.sel-row {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 9px 6px;
  margin: 0 -6px;
  font-size: 13px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 150ms ease;
}
.sel-row.sel-jump { cursor: pointer; }
.sel-row.sel-jump:hover { background: var(--paper); }
.sel-icon {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff;
  display: inline-block;
  position: relative;
  transition: all 180ms ease;
}
.sel-icon-locked, .sel-row.sel-done .sel-icon {
  background: var(--gold);
  border-color: var(--gold);
}
.sel-icon-locked svg, .sel-row.sel-done .sel-icon svg {
  width: 9px; height: 9px;
  color: #fff;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  stroke-width: 3;
}
.sel-row.sel-done .sel-icon::after {
  content: "";
  position: absolute;
  top: 2px; left: 5px;
  width: 3px; height: 6px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.sel-k { color: var(--dim); font-weight: 600; font-size: 12.5px; letter-spacing: 0.03em; }
.sel-v {
  color: var(--dim); font-weight: 500;
  text-align: right;
  font-style: italic;
  font-size: 12.5px;
  max-width: 230px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.sel-row.sel-done .sel-v,
.sel-row.sel-locked .sel-v {
  color: var(--navy); font-weight: 600; font-style: normal;
}

.dh-totals {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  display: flex; flex-direction: column; gap: 6px;
}
.dh-total-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13px; color: var(--ink-soft);
}
.dh-total-k { font-weight: 500; }
.dh-total-v { font-weight: 600; color: var(--navy); }
.dh-total-grand {
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px dashed var(--line-soft);
  font-size: 14px;
}
.dh-total-grand .dh-total-k {
  font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; font-size: 11px;
  color: var(--dim);
}
.dh-total-grand .dh-total-v {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 600;
  color: var(--navy);
}
.dh-card-foot {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  font-size: 11px; color: var(--dim);
  letter-spacing: 0.04em;
  font-style: italic;
}

/* Design blocks */
.design-block { margin-bottom: 64px; }
.db-head { margin-bottom: 28px; }
.db-eyebrow {
  font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 700; margin-bottom: 12px;
}
.db-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--navy);
  letter-spacing: -0.015em;
}
.db-sub {
  font-size: 14px; color: var(--ink-soft);
  margin: 0;
}

.opt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.opt-grid.sm {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.opt {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: all 180ms ease;
  display: flex; flex-direction: column;
}
.opt:hover { transform: translateY(-3px); box-shadow: 0 16px 28px rgba(20,33,47,0.10); }
.opt.selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-mist), 0 16px 28px rgba(184,146,61,0.18);
}

.opt-swatch {
  height: 100px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.opt-grid.sm .opt-swatch { height: 70px; }

.opt-body { padding: 14px 16px; }
.opt-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; color: var(--navy);
  margin: 0 0 4px; line-height: 1.1;
  letter-spacing: -0.01em;
}
.opt-grid.sm .opt-name { font-size: 16px; }
.opt-tag {
  font-size: 10.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--dim);
  font-weight: 700; margin-bottom: 6px;
}
.opt-tag-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; margin-bottom: 6px;
}
.opt-tag-row .opt-tag { margin-bottom: 0; }
.opt-price {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 8px; border-radius: 999px;
  white-space: nowrap;
}
.opt-price-incl {
  color: var(--dim);
  background: rgba(15,25,40,0.05);
}
.opt-price-up {
  color: var(--navy);
  background: var(--gold-mist);
  border: 1px solid rgba(184,146,61,0.35);
}
.opt-desc {
  font-size: 12.5px; color: var(--ink-soft);
  line-height: 1.5;
}
.opt-check {
  position: absolute; top: 8px; right: 8px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold); color: var(--navy-deep);
  display: none; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  box-shadow: 0 4px 10px rgba(184,146,61,0.4);
}
.opt.selected .opt-check { display: flex; }

/* Multi-row swatches for exterior */
.opt-swatch.split {
  display: flex; height: 110px;
}
.opt-swatch.split > span { flex: 1; height: 100%; }

/* ---- Photo-style cards (exteriors + interiors + upgrades) ---- */
.opt-photo .opt-photo-frame {
  position: relative;
  background: #F5F1E8;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 1200 / 776;
}
.opt-photo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 400ms cubic-bezier(0.2,0.7,0.3,1);
}
.opt-photo:hover .opt-photo-img { transform: scale(1.03); }
.opt-photo-sm .opt-photo-frame {
  aspect-ratio: 1 / 1;
  background: #FFFFFF;
}
.opt-photo-sm .opt-photo-img { object-fit: contain; padding: 8px; }
.opt-photo .opt-check { top: 10px; right: 10px; }

/* Color chip strip overlaid on photo (exteriors + interiors only) */
.opt-photo .opt-color-strip {
  position: absolute;
  left: 12px; right: 12px; bottom: 10px;
  display: flex;
  height: 14px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.55) inset,
    0 6px 14px rgba(15,25,40,0.30);
}
.opt-photo .opt-color-strip > span {
  flex: 1; height: 100%;
  border-right: 1px solid rgba(0,0,0,0.06);
}
.opt-photo .opt-color-strip > span:last-child { border-right: 0; }

/* "No selection" placeholder for fireplace-none, etc. */
.opt-photo-none {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background:
    repeating-linear-gradient(45deg,
      #F5F1E8 0 12px, #EEE9DD 12px 24px);
  position: relative;
}
.opt-photo-none > span { display: none; }
.opt-photo-none-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; color: var(--dim);
  font-style: italic;
}

@media (max-width: 560px) {
  .opt-photo .opt-color-strip { height: 12px; left: 8px; right: 8px; bottom: 8px; }
}

.upgrade-group { margin-bottom: 32px; }
.ug-head {
  font-size: 13px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--navy);
  font-weight: 700; margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.ug-head::before {
  content: ""; width: 24px; height: 1px;
  background: var(--gold);
}

.design-foot {
  display: flex; justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  gap: 16px;
  flex-wrap: wrap;
}

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .topbar { padding: 14px 18px; flex-wrap: wrap; gap: 12px; }
  .topnav { width: 100%; justify-content: flex-end; }
  .hero-wrap { padding: 56px 22px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .about-wrap { padding: 56px 22px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .map-wrap { padding: 32px 18px 48px; }
  .designer-wrap { padding: 32px 18px 60px; }
  .designer-head { grid-template-columns: 1fr; gap: 28px; margin-bottom: 40px; padding-bottom: 28px; }
  .dh-card { position: static; }
  .dh-stats { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .dh-stat { padding: 12px 10px 10px; }
  .dh-stat-num { font-size: 22px; }
  .lot-popover { min-width: 220px; max-width: 250px; }
}
@media (max-width: 560px) {
  .brand-text .brand-name { font-size: 18px; }
  .brand-text .brand-builder { font-size: 9px; }
  .navlink { padding: 7px 12px; font-size: 11px; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
  .opt-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .opt-grid.sm { grid-template-columns: 1fr 1fr; }
  .opt-name { font-size: 17px; }
  .opt-swatch { height: 80px; }
}

/* ============ Mobile-first refinements (phones) ============ */
@media (max-width: 720px) {
  /* Demo banner — shorter on small screens */
  .demo-banner { padding: 0 10px; gap: 8px; }
  .demo-banner-text { font-size: 11px; }

  /* Topbar: brand left, nav wraps under, tighter padding */
  .topbar { padding: 12px 14px; gap: 10px; }
  .brand { gap: 10px; }
  .brand-mark { width: 36px; height: 36px; font-size: 15px; }
  .topnav { gap: 4px; flex-wrap: wrap; justify-content: flex-start; }
  .navlink {
    padding: 9px 12px; font-size: 11.5px;
    min-height: 36px;
  }

  /* Hero */
  .hero-wrap { padding: 36px 18px; min-height: calc(100vh - 110px); }
  .hero-eyebrow { font-size: 10px; margin-bottom: 20px; letter-spacing: 0.24em; }
  .hero-sub { margin-bottom: 28px; }
  .hero-cta-row { gap: 10px; margin-bottom: 38px; }
  .hero-cta-row .btn { width: 100%; justify-content: center; min-height: 48px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; padding-top: 24px; }
  .hs-num { font-size: 30px; }

  /* About */
  .about-wrap { padding: 36px 18px 48px; }
  .about-title { margin-bottom: 28px; }
  .about-grid { gap: 24px; }
  .about-col p { font-size: 15px; }
  .about-col .btn { width: 100%; justify-content: center; min-height: 48px; }
  .about-card { padding: 22px 20px; }

  /* Map */
  .map-wrap { padding: 24px 14px 40px; }
  .map-head { margin-bottom: 20px; }
  .map-sub { font-size: 14px; }
  .legend { gap: 12px; }
  .legend-item { font-size: 11px; }

  /* Lot picker — full stack */
  .lot-picker { padding: 14px 14px; }
  .lot-picker-row { gap: 14px; }
  .lp-label { width: 100%; }
  .lp-tabs {
    width: 100%; overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
  }
  .lp-tab { font-size: 11.5px; padding: 8px 12px; }
  .lp-controls { width: 100%; flex-direction: column; align-items: stretch; gap: 10px; }
  .lp-select-wrap { width: 100%; }
  .lp-select { width: 100%; min-width: 0; min-height: 46px; font-size: 14px; }
  .lp-controls .btn { width: 100%; justify-content: center; min-height: 48px; }

  /* Lot popover doesn't fit well over thumb — shrink */
  .lot-popover { min-width: 200px; max-width: 220px; padding: 12px 14px; }
  .pop-plan { font-size: 20px; }

  /* Designer */
  .designer-wrap { padding: 24px 14px 56px; }
  .designer-head { gap: 22px; margin-bottom: 30px; padding-bottom: 22px; }
  .dh-hero { margin-bottom: 16px; aspect-ratio: 16 / 10; }
  .dh-hero-meta { top: 10px; left: 10px; }
  .dh-chip { font-size: 10px; padding: 5px 10px; letter-spacing: 0.14em; }
  .dh-title { font-size: clamp(34px, 9vw, 48px); margin-bottom: 12px; }
  .dh-price-row { margin: 0 0 14px; }
  .dh-price { font-size: 26px; }
  .dh-sub { font-size: 14.5px; margin-bottom: 22px; }

  .dh-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .dh-stat { padding: 12px 12px 10px; }
  .dh-stat svg { width: 18px; height: 18px; margin-bottom: 6px; }
  .dh-stat-num { font-size: 22px; }
  .dh-stat-lbl { font-size: 10px; margin-top: 4px; }

  .dh-actions { gap: 10px; }
  .dh-actions .btn { width: 100%; justify-content: center; min-height: 48px; }

  /* Build sheet card on mobile */
  .dh-card { padding: 18px 16px 16px; border-radius: 14px; }
  .dh-card-head { margin-bottom: 14px; }
  .dh-card-title { font-size: 19px; }
  .dh-progress-ring { width: 48px; height: 48px; }
  .sel-row { padding: 10px 6px; font-size: 12.5px; min-height: 44px; }
  .sel-v { max-width: 55%; font-size: 12px; }
  .sel-k { font-size: 12px; }
  .dh-total-grand .dh-total-v { font-size: 20px; }

  /* Design blocks */
  .design-block { margin-bottom: 44px; }
  .db-head { margin-bottom: 20px; }
  .db-title { font-size: clamp(24px, 6vw, 30px); }
  .db-sub { font-size: 13.5px; }

  .opt-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .opt-grid.sm { grid-template-columns: 1fr 1fr; gap: 10px; }
  .opt-body { padding: 12px 12px; }
  .opt-name { font-size: 16px; }
  .opt-grid.sm .opt-name { font-size: 14.5px; }
  .opt-desc { font-size: 12px; }
  .opt-tag { font-size: 9.5px; }
  .opt-price { font-size: 10px; padding: 2px 6px; }

  /* Bigger touch on buttons */
  .btn { min-height: 44px; }
  .btn.big { padding: 13px 22px; }

  /* Design footer */
  .design-foot { flex-direction: column; gap: 12px; align-items: stretch; }
  .design-foot .btn { width: 100%; justify-content: center; }

  /* Tour */
  .tour-wrap { padding: 24px 14px 48px; }
  .tour-head { margin-bottom: 20px; padding-bottom: 16px; gap: 14px; }
  .th-title { font-size: clamp(28px, 7vw, 38px); }
  .tour-left, .tour-right { min-height: 320px; }
  .tour-right { padding: 22px 18px 18px; }
  .tour-foot { flex-direction: column; gap: 12px; align-items: stretch; }
  .tour-foot .btn { width: 100%; justify-content: center; }
}

/* Extra-narrow phones */
@media (max-width: 420px) {
  body { padding-top: 44px; }
  .topbar { top: 44px; }
  .demo-banner {
    height: 44px;
    flex-direction: column; justify-content: center;
    gap: 2px; padding: 4px 10px;
  }
  .demo-banner-pill { font-size: 9.5px; padding: 2px 8px; }
  .demo-banner-text { font-size: 10px; white-space: normal; text-align: center; line-height: 1.15; }
  .dh-card { top: auto; }

  .topnav { width: 100%; }
  .navlink { flex: 1; text-align: center; padding: 8px 8px; font-size: 11px; }

  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .hs-num { font-size: 26px; }

  /* Single-column card grids on very narrow */
  .opt-grid { grid-template-columns: 1fr; }
  .opt-grid.sm { grid-template-columns: 1fr 1fr; }

  .dh-stats { grid-template-columns: repeat(2, 1fr); }

  .lp-tab { padding: 7px 10px; font-size: 11px; }

  .legend { gap: 10px; }

  .dh-card { padding: 16px 14px 14px; }
  .sel-row { grid-template-columns: 16px 1fr auto; gap: 8px; }
  .sel-v { max-width: 50%; }
}

/* Touch / no-hover devices: drop hover lifts */
@media (hover: none) {
  .opt:hover { transform: none; box-shadow: none; }
  .opt-photo:hover .opt-photo-img { transform: none; }
  .btn-primary:hover { transform: none; }
}

/* ============ Tour your design ============ */
.tour-wrap {
  max-width: 1400px; margin: 0 auto;
  padding: 44px 32px 60px;
}
.tour-head {
  display: grid; grid-template-columns: 1fr auto;
  align-items: end; gap: 24px; margin-bottom: 28px;
  padding-bottom: 22px; border-bottom: 1px solid var(--line);
}
.th-eyebrow {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.th-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; line-height: 1.05;
  margin: 6px 0 8px; color: var(--navy);
  letter-spacing: -0.01em;
}
.th-sub { margin: 0; color: var(--ink-soft); max-width: 720px; }

.tour-frame {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #0B1422;
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(11,20,34,0.25), 0 2px 0 rgba(255,255,255,0.04) inset;
}
.tour-left {
  position: relative;
  background: #15202F;
  min-height: 540px;
  display: grid; place-items: stretch;
}
.tour-room-label {
  position: absolute; top: 22px; left: 26px; z-index: 3;
  color: #fff;
}
.tour-room-label > span:first-child {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; line-height: 1; letter-spacing: -0.01em;
}
.tour-room-meta {
  display: block; margin-top: 6px;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.tour-scene { position: absolute; inset: 0; }
.tour-scene svg { width: 100%; height: 100%; display: block; }

.tour-right {
  background: #FBF9F3;
  padding: 28px 30px 22px;
  display: flex; flex-direction: column;
  min-height: 540px;
  border-left: 1px solid rgba(255,255,255,0.06);
}
.tour-plan-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.tpl-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px; letter-spacing: 0.28em; font-weight: 600;
  color: var(--navy);
}
.tpl-floor {
  font-size: 11px; letter-spacing: 0.24em;
  color: var(--ink-soft); font-weight: 500;
}
.tour-plan {
  position: relative; flex: 1;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px;
  display: grid; place-items: center;
  overflow: hidden;
}
.tour-plan svg { width: 100%; height: 100%; max-height: 420px; }
.tour-legend {
  margin-top: 12px; font-size: 11px;
  color: var(--ink-soft); letter-spacing: 0.04em;
  text-align: center;
}
.cam-dot-inline {
  display: inline-block;
  color: var(--gold); font-size: 14px;
  vertical-align: middle;
}

/* Camera waypoint dots */
.cam-dot {
  position: absolute;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(184,146,61,0.45);
  display: grid; place-items: center;
  color: #fff; font-size: 12px;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.cam-dot:hover {
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 6px 14px rgba(184,146,61,0.6);
}
.cam-dot.active {
  background: var(--navy);
  box-shadow: 0 0 0 6px rgba(20,39,74,0.18);
}
.cam-dot::after {
  content: attr(data-label);
  position: absolute; left: 36px; top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; color: var(--navy);
  background: rgba(255,255,255,0.95);
  padding: 4px 8px; border-radius: 4px;
  pointer-events: none;
  opacity: 0; transition: opacity 0.15s ease;
}
.cam-dot:hover::after, .cam-dot.active::after { opacity: 1; }

/* Tour bottom strip — room thumbnails */
.tour-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px; margin-top: 22px;
}
.tour-chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  display: flex; align-items: center; gap: 12px;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.tour-chip:hover { border-color: var(--gold-soft); transform: translateY(-1px); box-shadow: 0 6px 14px rgba(20,33,47,0.06); }
.tour-chip.active { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-mist); }
.tour-chip-thumb {
  width: 46px; height: 46px; border-radius: 8px;
  flex-shrink: 0; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600;
}
.tour-chip-text { display: flex; flex-direction: column; min-width: 0; }
.tour-chip-name { font-size: 13px; font-weight: 600; color: var(--navy); }
.tour-chip-sub { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }

.tour-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 32px; padding-top: 22px;
  border-top: 1px solid var(--line);
}

@media (max-width: 960px) {
  .tour-frame { grid-template-columns: 1fr; }
  .tour-left, .tour-right { min-height: 360px; }
  .tour-right { border-left: none; border-top: 1px solid var(--line); }
  .tour-head { grid-template-columns: 1fr; }
  .tour-strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .tour-wrap { padding: 28px 18px 48px; }
  .th-title { font-size: 32px; }
  .tour-strip { grid-template-columns: 1fr; }
}
