:root {

  --st-free: oklch(57% 0.085 158);
  --st-free-soft: oklch(57% 0.085 158 / 0.16);
  --st-res: #D2B600;
  --st-res-soft: rgba(210, 182, 0, 0.18);
  --st-sold: oklch(58% 0.17 25);
  --st-sold-soft: oklch(58% 0.17 25 / 0.16);
}

.el-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--paper);
}
.el-hero-bg { position: absolute; inset: 0; z-index: 0; }
.el-hero-bg img, .el-hero-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 62%;
}
.el-hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(10,13,16,0.58) 0%, rgba(10,13,16,0.18) 42%, rgba(10,13,16,0.02) 68%, rgba(10,13,16,0.06) 100%),
    linear-gradient(to right, rgba(10,13,16,0.32) 0%, rgba(10,13,16,0.03) 50%, rgba(10,13,16,0) 100%);
}
.el-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 160px;
  padding-bottom: 64px;
}
.el-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.el-hero-eyebrow .eyebrow { color: var(--paper); opacity: 0.86; }
.el-hero-eyebrow .e-line { width: 46px; height: 1px; background: var(--accent); opacity: 0.9; }
.el-hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.96;
  font-size: clamp(52px, 8.5vw, 132px);
  margin: 0;
  color: var(--paper);
  text-wrap: balance;
}
.el-hero-title .it { font-style: italic; color: var(--accent); }
.el-hero-sub {
  margin: 28px 0 0;
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.5;
  max-width: 46ch;
  color: var(--paper);
  opacity: 0.9;
  text-wrap: pretty;
}
.el-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
}
.el-hero .btn-ghost { color: var(--paper); border-color: rgba(244,244,242,0.4); }
.el-hero .btn-ghost:hover { border-color: var(--paper); background: rgba(244,244,242,0.08); }
.el-hero-meta {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: start;
  align-items: start;
  column-gap: 44px;
  row-gap: 20px;
  margin-top: 52px;
  padding-top: 30px;
  border-top: 1px solid rgba(244,244,242,0.18);
}
@media (max-width: 760px) { .el-hero-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 24px; } }
@media (max-width: 760px) { .el-hero-meta .cell strong { font-size: 23px; } }
.el-hero-meta .cell { display: flex; flex-direction: column; gap: 3px; padding: 6px 0; }
.el-hero-meta .cell strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 27px;
  letter-spacing: -0.01em;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
  text-shadow: 0 1px 12px rgba(10,13,16,0.55);
}
.el-hero-meta .cell > span {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.9;
  text-shadow: 0 1px 10px rgba(10,13,16,0.6);
}
.el-scrollcue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.7;
}
.el-scrollcue .line { width: 1px; height: 34px; background: linear-gradient(var(--accent), transparent); }
@media (max-width: 768px) { .el-scrollcue { display: none; } }

.el-infobar { background: var(--ink); color: var(--paper); border-bottom: 1px solid rgba(255,255,255,0.08); }
.el-infobar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}
.el-ib-cell {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 30px 32px 30px 0;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.el-ib-cell:first-child { padding-left: 0; }
.el-ib-cell:not(:first-child) { padding-left: 32px; }
.el-ib-cell:last-child { border-right: none; }
.el-ib-k {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,244,242,0.5);
}
.el-ib-v {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(19px, 1.7vw, 25px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.el-ib-v small { font-family: var(--font-body); font-size: 14px; opacity: 0.6; font-weight: 400; }
.el-ib-sub { font-family: var(--font-body); font-size: 14.5px; color: rgba(244,244,242,0.62); }
.el-ib-phones { display: flex; flex-wrap: wrap; align-items: baseline; gap: 2px 18px; }
.el-ib-cell a.el-ib-v { transition: color 0.16s; }
.el-ib-cell a.el-ib-v:hover { color: var(--accent); }
.el-ib-tag {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--accent);
  padding: 3px 8px;
  font-weight: 700;
  margin-top: 2px;
}
@media (max-width: 900px) {
  .el-infobar-grid { grid-template-columns: 1fr 1fr; }
  .el-ib-cell { padding: 22px 22px 22px 0 !important; }
  .el-ib-cell:nth-child(odd) { padding-left: 0 !important; }
  .el-ib-cell:nth-child(even) { border-right: none; }
  .el-ib-cell:nth-child(1), .el-ib-cell:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
}
@media (max-width: 560px) {
  .el-infobar-grid { grid-template-columns: 1fr; }
  .el-ib-cell { border-right: none !important; padding: 18px 0 !important; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .el-ib-cell:last-child { border-bottom: none; }
}

.elea-plan {
  background: var(--ink);
  color: var(--paper);
  padding: 112px 0 120px;
  position: relative;
}
.elea-plan .container { max-width: 1500px; padding: 0 36px; }
@media (max-width: 768px) { .elea-plan .container { padding: 0 24px; } }
.ep-head { margin-bottom: 40px; }
.ep-head .eyebrow { color: rgba(244,244,242,0.7); }
.ep-head .chevron-mark { border-left-color: var(--accent); }
.ep-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 3.4vw, 50px);
  letter-spacing: -0.015em;
  line-height: 1.04;
  margin: 14px 0 0;
  color: var(--paper);
  text-wrap: balance;
}
.ep-title .it { font-style: italic; color: var(--accent); }
.ep-subtitle {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,244,242,0.55);
  margin-top: 16px;
}

.ep-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 30px;
}
.ep-crumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ep-crumb {
  background: none; border: none; cursor: pointer;
  color: rgba(244,244,242,0.6);
  font: inherit; letter-spacing: inherit;
  padding: 4px 2px;
  transition: color 0.15s;
}
.ep-crumb:hover { color: var(--accent); }
.ep-crumb.is-current { color: var(--paper); cursor: default; }
.ep-crumb.is-current:hover { color: var(--paper); }
.ep-crumb-sep { opacity: 0.3; }
.ep-back {
  display: inline-flex; align-items: center; gap: 9px;
  background: none;
  border: 1px solid rgba(255,255,255,0.24);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 16px;
  cursor: pointer;
  transition: all 0.16s;
  border-radius: var(--radius);
}
.ep-back:hover { border-color: var(--accent); color: var(--accent); }
.ep-back svg { transition: transform 0.2s; }
.ep-back:hover svg { transform: translateX(-3px); }

.ep-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 420px);
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 1080px) { .ep-shell { grid-template-columns: 1fr; } }

.ep-stage {
  position: relative;
  background: #0a0d10;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-width: 0;
  aspect-ratio: 16 / 10;
  touch-action: none;
  user-select: none;
}
@media (max-width: 1080px) { .ep-stage { aspect-ratio: 4 / 3; min-height: 0; } }
@media (max-width: 560px) { .ep-stage { aspect-ratio: 3 / 3.4; } }
.ep-stage-inner {
  position: absolute;
  inset: 0;
  transform-origin: 0 0;
  transition: transform 0.5s cubic-bezier(0.22,0.61,0.36,1);
  will-change: transform;
}
.ep-stage.dragging .ep-stage-inner { transition: none; }
.ep-stage-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.ep-stage-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}

.ep-plan-loader {
  position: absolute; inset: 0; z-index: 5;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  background: #f4f4f2;
  color: rgba(15,20,24,0.55);
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase;
  pointer-events: none;
}
.ep-plan-spinner {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid rgba(15,20,24,0.14);
  border-top-color: var(--accent, #c8a24a);
  animation: ep-plan-spin 0.8s linear infinite;
}

.ep-plan-loader-dark {
  background: #0d1115;
  color: rgba(244,244,242,0.6);
}
.ep-plan-loader-dark .ep-plan-spinner { border-color: rgba(244,244,242,0.16); border-top-color: var(--accent, #c8a24a); }
@keyframes ep-plan-spin { to { transform: rotate(360deg); } }

.ep-vignette {
  position: absolute; inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 180px 30px rgba(8,11,14,0.6);
  z-index: 2;
}

.ep-stage.is-floor .ep-vignette,
.ep-stage.is-detail .ep-vignette { display: none; }

.ep-zoom {
  position: absolute;
  right: 14px; bottom: 14px;
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(10,13,16,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  overflow: hidden;
}
.ep-zoom button {
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  color: var(--paper);
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.14s;
}
.ep-zoom button:hover { background: rgba(255,255,255,0.12); }
.ep-zoom button + button { border-top: 1px solid rgba(255,255,255,0.14); }
.ep-zoom button.sm { font-size: 12.5px; font-family: var(--font-mono); letter-spacing: 0.05em; }
.ep-ic-rst { display: block; opacity: 0.9; }

.ep-hint {
  position: absolute;
  left: 14px; bottom: 14px;
  z-index: 6;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,244,242,0.7);
  background: rgba(10,13,16,0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 8px 12px;
  border-radius: var(--radius);
  display: flex; align-items: center; gap: 8px;
  pointer-events: none;
  max-width: 70%;
}
.ep-stage-badge {
  position: absolute;
  left: 14px; top: 14px;
  z-index: 6;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(10,13,16,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 8px 13px;
  border-radius: var(--radius);
  display: flex; align-items: center; gap: 9px;
}
.ep-stage-badge .compass { color: var(--accent); }

.ep-hot {
  cursor: pointer;
  transition: fill 0.25s, stroke 0.2s, opacity 0.25s;
}
.ep-hot-fill { fill: rgba(210,182,0,0.0); stroke: rgba(244,244,242,0.0); stroke-width: 0.35; }
.ep-hot:hover .ep-hot-fill,
.ep-hot.active .ep-hot-fill { fill: rgba(210,182,0,0.22); stroke: var(--accent); }
.ep-hot-num {
  font-family: var(--font-display);
  font-weight: 500;
  fill: var(--paper);
  text-anchor: middle;
  paint-order: stroke;
  stroke: rgba(10,13,16,0.55);
  stroke-width: 0.5;
  pointer-events: none;
  opacity: 0.92;
}
.ep-hot-pin {
  transition: transform 0.2s;
}

.ep-stage.is-sit { background: #0a0d10; border-color: rgba(255,255,255,0.12); aspect-ratio: 1536 / 1024; max-height: 82vh; }
@media (max-width: 1080px) { .ep-stage.is-sit { aspect-ratio: 1536 / 1024; max-height: none; } }
@media (max-width: 560px) { .ep-stage.is-sit { aspect-ratio: 1536 / 1024; } }
.ep-aerial-svg, .ep-bld-svg {
  background: transparent;

  --sit-hot: #1f9ec7;
  --sit-sel: #ffd34d;
}
.ep-sit-img { transform-box: view-box; }

.ep-aerial-hot { cursor: pointer; }

.ep-aerial-fill {
  fill: var(--sit-hot);
  fill-opacity: 0.20;
  stroke: var(--sit-hot);
  stroke-width: 2;
  transition: fill-opacity 0.22s, stroke 0.22s, stroke-width 0.22s;
}

.ep-aerial-hot:hover .ep-aerial-fill,
.ep-bld-hot:hover .ep-aerial-fill {
  fill-opacity: 0.50;
}

.ep-aerial-hot.active .ep-aerial-fill,
.ep-bld-hot.active .ep-aerial-fill {
  fill: var(--sit-sel);
  fill-opacity: 0.55;
  stroke: var(--sit-sel);
}
.ep-aerial-badge { pointer-events: none; opacity: 0.92; transition: opacity 0.2s; }
.ep-aerial-badge rect { fill: rgba(13,17,21,0.82); stroke: rgba(255,255,255,0.18); stroke-width: 1; }
.ep-aerial-badge text { fill: var(--paper); font-family: var(--font-mono); font-size: 15px; letter-spacing: 0.04em; }
.ep-aerial-dot { stroke: none; }
.ep-aerial-dot.free { fill: var(--st-free); }
.ep-aerial-dot.none { fill: rgba(244,244,242,0.4); }
.ep-aerial-hot:hover .ep-aerial-badge { opacity: 1; }
.ep-aerial-hot:hover .ep-aerial-badge rect { stroke: var(--accent); }

.ep-aerial-hot.ep-hover .ep-aerial-fill { fill-opacity: 0.50; }
.ep-aerial-hot.ep-hover .ep-aerial-badge { opacity: 1; }
.ep-aerial-hot.ep-hover .ep-aerial-badge rect { stroke: var(--accent); }

.ep-plan-svg { background: transparent; }
.ep-plan-img { object-fit: contain; }

.ep-stage.is-bld { background: #0a0d10; border-color: rgba(255,255,255,0.12); aspect-ratio: 16 / 10; max-height: 78vh; }
@media (max-width: 1080px) { .ep-stage.is-bld { aspect-ratio: 16 / 10; max-height: none; } }
@media (max-width: 560px) { .ep-stage.is-bld { aspect-ratio: 16 / 11; } }
.ep-bld-img { object-fit: cover; }
.ep-bld-hot { cursor: pointer; }

.ep-stage.is-park { background: #f4f4f2; border-color: rgba(255,255,255,0.12); }
.ep-park-img { width: 100%; height: 100%; object-fit: contain; padding: 14px; }
@media (max-width: 760px) { .ep-park-img { padding: 8px; } }

.ep-shell.is-plan { grid-template-columns: minmax(0, 1fr) minmax(360px, 440px); align-items: start; }
.ep-stage.is-floor, .ep-stage.is-detail, .ep-stage.is-park {
  width: 100%;
  max-width: calc(80vh * var(--plan-ar, 0.8));
  height: auto;
  min-height: 0;
  justify-self: center;
}
@media (max-width: 1080px) {
  .ep-shell.is-plan { grid-template-columns: 1fr; }
  .ep-stage.is-floor, .ep-stage.is-detail, .ep-stage.is-park { max-width: min(100%, calc(82vh * var(--plan-ar, 0.8))); margin-inline: auto; }
}
.ep-bld-badge text { font-size: 19px; }

.ep-bld-svg .ep-aerial-fill {
  fill-opacity: 0;
  stroke: transparent;
}
.ep-bld-hot:hover .ep-aerial-fill {
  fill-opacity: 0.50;
  stroke: var(--sit-hot);
}

.ep-bld-hot.ep-hover .ep-aerial-fill {
  fill-opacity: 0.50;
  stroke: var(--sit-hot);
}
.ep-bld-hot.ep-hover .ep-aerial-badge { opacity: 1; }
.ep-bld-hot.ep-hover .ep-aerial-badge rect { stroke: var(--accent); }
.ep-bld-hot.active .ep-aerial-fill {
  fill-opacity: 0.55;
  stroke: var(--sit-sel);
}
.ep-pcell { cursor: pointer; transition: opacity 0.2s; }
.ep-pcell-shape {
  stroke-width: 5;
  stroke-linejoin: round;
  transition: fill 0.18s, stroke 0.18s;
}
.ep-pcell.free .ep-pcell-shape    { fill: oklch(57% 0.085 158 / 0.30); stroke: oklch(42% 0.115 158); }
.ep-pcell.reserved .ep-pcell-shape{ fill: rgba(210,182,0,0.30); stroke: oklch(48% 0.13 95); }
.ep-pcell.sold .ep-pcell-shape    { fill: oklch(58% 0.17 25 / 0.42); stroke: oklch(45% 0.19 25); }
.ep-pcell:hover .ep-pcell-shape,
.ep-pcell.active .ep-pcell-shape  { stroke-width: 8; }
.ep-pcell.free:hover .ep-pcell-shape,    .ep-pcell.free.active .ep-pcell-shape    { fill: oklch(57% 0.085 158 / 0.46); }
.ep-pcell.reserved:hover .ep-pcell-shape,.ep-pcell.reserved.active .ep-pcell-shape{ fill: rgba(210,182,0,0.46); }
.ep-pcell.sold:hover .ep-pcell-shape,    .ep-pcell.sold.active .ep-pcell-shape    { fill: oklch(58% 0.17 25 / 0.56); }
.ep-pcell.dimmed { opacity: 0.16; }
.ep-pcell.faded { opacity: 0.4; transition: opacity 0.2s; }
.ep-pcell.faded .ep-pcell-tag { opacity: 0; }

.ep-pcell.faded:hover { opacity: 1; }
.ep-pcell.faded:hover .ep-pcell-tag { opacity: 1; }

.ep-pcell.ep-hover .ep-pcell-shape { stroke-width: 8; }
.ep-pcell.free.ep-hover .ep-pcell-shape    { fill: oklch(57% 0.085 158 / 0.46); }
.ep-pcell.reserved.ep-hover .ep-pcell-shape{ fill: rgba(210,182,0,0.46); }
.ep-pcell.sold.ep-hover .ep-pcell-shape    { fill: oklch(58% 0.17 25 / 0.56); }
.ep-pcell.faded.ep-hover { opacity: 1; }
.ep-pcell.faded.ep-hover .ep-pcell-tag { opacity: 1; }

.ep-pcell.active .ep-pcell-shape { stroke-width: 9; filter: drop-shadow(0 0 7px rgba(0,0,0,0.55)); }
.ep-pcell.free.active .ep-pcell-shape    { fill: oklch(60% 0.09 158 / 0.62); stroke: oklch(70% 0.12 158); }
.ep-pcell.reserved.active .ep-pcell-shape{ fill: rgba(210,182,0,0.62); stroke: var(--accent); }
.ep-pcell.sold.active .ep-pcell-shape    { fill: oklch(58% 0.18 25 / 0.72); stroke: oklch(74% 0.16 25); }
.ep-pcell-tag rect { fill: rgba(13,17,21,0.9); stroke: rgba(255,255,255,0.22); stroke-width: 1.5; }
.ep-pcell.active .ep-pcell-tag rect { stroke: var(--accent); stroke-width: 2.5; }
.ep-pcell-code { fill: var(--paper); font-family: var(--font-display); font-weight: 500; font-size: 30px; text-anchor: middle; }
.ep-pcell-area { fill: rgba(244,244,242,0.7); font-family: var(--font-mono); font-size: 20px; text-anchor: middle; }
.ep-pcell-tag { pointer-events: none; }

.ep-cell { cursor: pointer; transition: opacity 0.2s; }
.ep-cell-shape { stroke: rgba(10,13,16,0.5); stroke-width: 0.4; transition: fill 0.2s, stroke 0.2s; }
.ep-cell.free  .ep-cell-shape { fill: var(--st-free); }
.ep-cell.reserved .ep-cell-shape { fill: var(--st-res); }
.ep-cell.sold  .ep-cell-shape { fill: var(--st-sold); }
.ep-cell:hover .ep-cell-shape,
.ep-cell.active .ep-cell-shape { stroke: var(--paper); stroke-width: 0.9; }
.ep-cell.dimmed { opacity: 0.22; }
.ep-cell-code {
  font-family: var(--font-mono);
  font-weight: 500;
  fill: rgba(10,13,16,0.82);
  text-anchor: middle;
  pointer-events: none;
}
.ep-cell.sold .ep-cell-code { fill: rgba(244,244,242,0.8); }
.ep-cell-area {
  font-family: var(--font-mono);
  fill: rgba(10,13,16,0.6);
  text-anchor: middle;
  pointer-events: none;
}
.ep-cell.sold .ep-cell-area { fill: rgba(244,244,242,0.55); }
.ep-plan-core { fill: rgba(244,244,242,0.10); stroke: rgba(244,244,242,0.16); stroke-width: 0.4; }
.ep-plan-core-label { font-family: var(--font-mono); fill: rgba(244,244,242,0.5); text-anchor: middle; }
.ep-plan-outline { fill: none; stroke: rgba(244,244,242,0.2); stroke-width: 0.5; }

.ep-tip {
  position: absolute;
  z-index: 8;
  pointer-events: none;
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 12px 14px;
  min-width: 170px;
  box-shadow: 0 18px 50px -16px rgba(0,0,0,0.6);
  transform: translate(-50%, calc(-100% - 14px));
  transition: opacity 0.12s;
}
.ep-tip::after {
  content: ""; position: absolute;
  left: 50%; bottom: -6px; transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px; background: var(--paper);
}
.ep-tip-name { font-family: var(--font-display); font-weight: 500; font-size: 19px; letter-spacing: -0.01em; }
.ep-tip-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 7px; font-size: 14px; }
.ep-tip-row .k { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.55; }
.ep-tip-status { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.06em; }
.ep-tip-status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.ep-tip-price { font-family: var(--font-display); font-weight: 500; font-size: 18px; margin-top: 9px; padding-top: 9px; border-top: 1px solid var(--line); }

.ep-side {
  background: #0d1115;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 0;
  min-width: 0;
}
.ep-side-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--paper);
}
.ep-side-lead { font-size: 14.5px; line-height: 1.55; color: rgba(244,244,242,0.66); text-wrap: pretty; }

.ep-blist { display: flex; flex-direction: column; gap: 8px; }
.ep-bcard {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 14px 16px;
  cursor: pointer;
  color: var(--paper);
  transition: all 0.16s;
}
.ep-bcard:hover { border-color: var(--accent); background: rgba(210,182,0,0.06); transform: translateX(2px); }
.ep-bcard-n {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 30px;
  line-height: 1;
  color: var(--accent);
  width: 34px;
}
.ep-bcard-main { display: flex; flex-direction: column; gap: 3px; }
.ep-bcard-name { font-family: var(--font-display); font-size: 19px; font-weight: 500; }
.ep-bcard-meta { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: rgba(244,244,242,0.55); }
.ep-bcard-free { display: inline-flex; align-items: baseline; gap: 4px; }
.ep-bcard-free b { color: var(--st-free); font-family: var(--font-display); font-size: 20px; }
.ep-bcard-arrow { opacity: 0.5; transition: transform 0.16s, opacity 0.16s; }
.ep-bcard:hover .ep-bcard-arrow { opacity: 1; transform: translateX(3px); color: var(--accent); }

.ep-floors { display: flex; flex-direction: column; gap: 8px; }
.ep-floor {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 16px 18px;
  cursor: pointer;
  color: var(--paper);
  transition: all 0.16s;
}
.ep-floor:hover { border-color: var(--accent); background: rgba(210,182,0,0.06); }
.ep-floor-name { display: block; font-family: var(--font-display); font-size: 21px; font-weight: 500; }
.ep-floor-sub { display: block; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.08em; color: rgba(244,244,242,0.5); text-transform: uppercase; margin-top: 2px; }
.ep-floor-free { font-family: var(--font-mono); font-size: 14px; color: var(--st-free); display: flex; align-items: center; gap: 7px; }
.ep-floor-free::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--st-free); }
.ep-floor.none .ep-floor-free { color: rgba(244,244,242,0.4); }
.ep-floor.none .ep-floor-free::before { background: rgba(244,244,242,0.3); }

.ep-legend { display: flex; flex-wrap: wrap; gap: 7px 16px; }
.ep-legend-item { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.04em; color: rgba(244,244,242,0.8); }
.ep-legend-dot { width: 11px; height: 11px; border-radius: 3px; }
.ep-legend-dot.free { background: var(--st-free); }
.ep-legend-dot.reserved { background: var(--st-res); }
.ep-legend-dot.sold { background: var(--st-sold); }

.ep-filters { display: flex; flex-direction: column; gap: 12px; }
.ep-filter-row { display: flex; flex-direction: column; gap: 8px; }
.ep-filter-label { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(244,244,242,0.5); }
.ep-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.ep-chip {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(244,244,242,0.85);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 7px 13px;
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.14s;
}
.ep-chip:hover { border-color: rgba(255,255,255,0.5); }
.ep-chip.is-active { background: var(--accent); border-color: var(--accent); color: var(--ink); font-weight: 600; }

.ep-viewtoggle {
  display: inline-flex;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  padding: 3px;
  gap: 3px;
}
.ep-viewtoggle button {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(244,244,242,0.7);
  padding: 8px 16px;
  border-radius: 2px;
  transition: all 0.14s;
}
.ep-viewtoggle button.is-active { background: var(--paper); color: var(--ink); font-weight: 600; }

.ep-side-scroll { display: flex; flex-direction: column; gap: 9px; max-height: 420px; overflow-y: auto; margin: 0 -6px; padding: 2px 6px; }
.ep-side-scroll::-webkit-scrollbar { width: 5px; }
.ep-side-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.18); border-radius: 3px; }

.ep-apt {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 13px;
  align-items: center;
  width: 100%;
  text-align: left;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--st-sold);
  border-radius: var(--radius);
  padding: 13px 15px;
  cursor: pointer;
  color: var(--paper);
  transition: all 0.16s;
}
.ep-apt.free { border-left-color: var(--st-free); }
.ep-apt.reserved { border-left-color: var(--st-res); }
.ep-apt.sold { border-left-color: var(--st-sold); }
.ep-apt:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.06); }
.ep-apt.is-active { border-color: var(--accent); background: rgba(210,182,0,0.07); }
.ep-apt-code { font-family: var(--font-display); font-weight: 500; font-size: 22px; line-height: 1; width: 52px; }
.ep-apt-main { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.ep-apt-type { font-size: 15px; }
.ep-apt-tags { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.05em; color: rgba(244,244,242,0.55); }
.ep-apt-right { text-align: right; display: flex; flex-direction: column; gap: 3px; }
.ep-apt-area { font-family: var(--font-display); font-size: 18px; font-weight: 500; }
.ep-apt-area small { font-family: var(--font-body); font-size: 13px; opacity: 0.6; }
.ep-apt-price { font-family: var(--font-mono); font-size: 14px; color: var(--accent); }
.ep-apt.sold .ep-apt-price { color: rgba(244,244,242,0.4); }

.ep-empty { font-family: var(--font-mono); font-size: 14px; color: rgba(244,244,242,0.5); padding: 30px 10px; text-align: center; letter-spacing: 0.04em; }

.ep-detail { display: flex; flex-direction: column; gap: 0; }
.ep-detail-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 14px;
  padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.12);
}
.ep-detail-code { font-family: var(--font-display); font-weight: 500; font-size: 38px; line-height: 1; letter-spacing: -0.01em; }
.ep-detail-where { font-family: var(--font-mono); font-size: 14px; letter-spacing: 0.08em; color: rgba(244,244,242,0.55); text-transform: uppercase; margin-top: 8px; }
.ep-detail-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.06em;
  padding: 7px 12px; border-radius: 999px; white-space: nowrap;
}
.ep-detail-status.free { background: var(--st-free-soft); color: var(--st-free); }
.ep-detail-status.reserved { background: var(--st-res-soft); color: var(--accent-soft); }
.ep-detail-status.sold { background: var(--st-sold-soft); color: oklch(68% 0.17 25); }
.ep-detail-status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }

.ep-detail-dl { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 4px 0; }
.ep-dl-item { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; gap: 4px; }
.ep-dl-item:nth-child(odd) { padding-right: 14px; }
.ep-dl-item:nth-child(even) { padding-left: 14px; border-left: 1px solid rgba(255,255,255,0.08); }
.ep-dl-k { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(244,244,242,0.5); }
.ep-dl-v { font-family: var(--font-display); font-size: 21px; font-weight: 500; letter-spacing: -0.01em; }
.ep-dl-v small { font-family: var(--font-body); font-size: 14px; opacity: 0.6; font-weight: 400; }

.ep-detail-plan {
  margin: 12px 0 2px;
  padding: 10px 10px 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #fff;
  cursor: zoom-in;
}
.ep-detail-plan img { display: block; width: 100%; height: auto; }
.ep-detail-plan figcaption {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15,20,24,0.55);
  padding-top: 7px;
}
.ep-plan-zoom {
  position: fixed; inset: 0; z-index: 220;
  background: rgba(8,11,14,0.94);
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  cursor: zoom-out;
}
.ep-plan-zoom img { max-width: 94vw; max-height: 92vh; object-fit: contain; background: #fff; padding: 12px; }
.ep-plan-zoom-close {
  position: absolute; top: 20px; right: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: none;
  color: #f4f4f2;
  font-size: 22px;
  cursor: pointer;
}
@media (max-width: 700px) { .ep-plan-zoom { padding: 12px; } .ep-plan-zoom img { padding: 6px; } }

.ep-detail-price { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 16px 0 6px; }
.ep-detail-price .p-main { font-family: var(--font-display); font-weight: 500; font-size: 30px; letter-spacing: -0.01em; }
.ep-detail-price .p-sub { font-family: var(--font-mono); font-size: 12.5px; color: rgba(244,244,242,0.55); }
.ep-price-note { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: rgba(244,244,242,0.4); margin-top: 2px; }

.ep-detail-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.ep-detail-actions .btn { justify-content: center; width: 100%; }
.ep-detail-actions .btn-dl {
  border: 1px solid rgba(255,255,255,0.24); color: var(--paper); background: none;
}
.ep-detail-actions .btn-dl:hover { border-color: var(--accent); color: var(--accent); }

.ep-aptplan-wall { fill: none; stroke: rgba(244,244,242,0.85); stroke-width: 1.1; }
.ep-aptplan-room { fill: rgba(244,244,242,0.04); stroke: rgba(244,244,242,0.3); stroke-width: 0.5; }
.ep-aptplan-out { fill: rgba(210,182,0,0.08); stroke: rgba(210,182,0,0.5); stroke-width: 0.6; stroke-dasharray: 2 1.5; }
.ep-aptplan-label { font-family: var(--font-mono); fill: rgba(244,244,242,0.7); text-anchor: middle; }
.ep-aptplan-dim { font-family: var(--font-mono); fill: rgba(244,244,242,0.45); text-anchor: middle; }

.ep-sheet {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 120;
  background: #0d1115;
  border-top: 1px solid rgba(255,255,255,0.16);
  border-radius: 16px 16px 0 0;
  padding: 14px 20px calc(20px + env(safe-area-inset-bottom));
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.22,0.61,0.36,1);
  box-shadow: 0 -20px 60px -20px rgba(0,0,0,0.7);
  color: var(--paper);
}
.ep-sheet.open { transform: translateY(0); }
.ep-sheet-grip { width: 40px; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.25); margin: 0 auto 14px; }
.ep-sheet-backdrop {
  position: fixed; inset: 0; z-index: 119;
  background: rgba(8,11,14,0.5);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.ep-sheet-backdrop.open { opacity: 1; pointer-events: auto; }

.ep-fs {
  position: fixed; inset: 0; z-index: 130;
  background: var(--ink);
  color: var(--paper);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.22,0.61,0.36,1);
}
.ep-fs.open { transform: translateX(0); }
.ep-fs-bar {
  position: sticky; top: 0; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  background: rgba(15,20,24,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.ep-fs-close { background: none; border: 1px solid rgba(255,255,255,0.24); color: var(--paper); width: 40px; height: 40px; border-radius: 50%; font-size: 20px; cursor: pointer; }
.ep-fs-body { padding: 22px 20px 60px; display: flex; flex-direction: column; gap: 22px; }
.ep-fs-stage { aspect-ratio: 4/3; background: #0a0d10; border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); position: relative; overflow: hidden; }

@media (max-width: 1080px) {
  .ep-side { min-height: 0; }
  .ep-side-scroll { max-height: none; }
}

.el-about { background: var(--paper); }
.el-about-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 72px; align-items: start; }
@media (max-width: 980px) { .el-about-grid { grid-template-columns: 1fr; gap: 40px; } }
.el-about-side h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(34px, 4vw, 56px); line-height: 1.04; letter-spacing: -0.015em; margin: 14px 0 0; }
.el-about-side h2 .it { font-style: italic; color: var(--accent); }
.el-about-body p { font-size: 18px; line-height: 1.62; color: var(--ink); opacity: 0.82; margin: 0 0 20px; text-wrap: pretty; }
.el-about-body p:last-child { margin-bottom: 0; }
.el-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 30px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  text-wrap: balance;
}

.el-numbers { background: var(--ecru); border-top: 1px solid var(--line); }
.el-num-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 860px) { .el-num-grid { grid-template-columns: repeat(2, 1fr); } }
.el-num {
  padding: 34px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 8px;
  min-width: 0;
}
@media (max-width: 560px) {
  .el-num { padding: 22px 14px; }
  .el-num-val { font-size: clamp(19px, 5.6vw, 32px); overflow-wrap: break-word; hyphens: auto; }
  .el-num-label { font-size: 12px; letter-spacing: 0.08em; }
}
.el-num-val {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.el-num-val small { font-size: 0.42em; font-family: var(--font-body); opacity: 0.5; font-weight: 400; letter-spacing: 0; }
.el-num-label { font-family: var(--font-mono); font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); opacity: 0.6; }

.el-adv { background: var(--paper); }
.el-adv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: 56px;
}
@media (max-width: 1080px) { .el-adv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .el-adv-grid { grid-template-columns: 1fr; } }
.el-adv-card {
  padding: 34px 28px 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 16px;
  transition: background 0.18s;
}
.el-adv-card:hover { background: var(--ecru); }
.el-adv-ico {
  width: 40px; height: 40px;
  color: var(--ink);
}
.el-adv-ico svg { width: 100%; height: 100%; }
.el-adv-num { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.14em; opacity: 0.4; }
.el-adv-card h3 { font-family: var(--font-display); font-weight: 500; font-size: 23px; line-height: 1.18; letter-spacing: -0.01em; margin: 0; }
.el-adv-card p { font-size: 16px; line-height: 1.55; color: var(--ink); opacity: 0.72; margin: 0; text-wrap: pretty; }

.el-gallery { background: var(--ecru); border-top: 1px solid var(--line); }
.el-gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 300px;
  grid-auto-flow: dense;
  gap: 0;
  margin-top: 52px;
  padding: 0;
}
@media (max-width: 980px) { .el-gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; } }
@media (max-width: 560px) { .el-gal-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; } }
.el-gtile { position: relative; overflow: hidden; cursor: pointer; background: var(--sand); margin: 0; }
.el-gtile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.2,0.6,0.2,1); }
.el-gtile:hover img { transform: scale(1.06); }
.el-gtile .num {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.14em;
  color: var(--paper); background: rgba(10,13,16,0.5); backdrop-filter: blur(4px);
  padding: 4px 8px; z-index: 2;
}
.el-gtile .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 30px 14px 12px;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--paper);
  background: linear-gradient(transparent, rgba(10,13,16,0.7));
  opacity: 0; transform: translateY(6px); transition: all 0.2s; z-index: 2;
}
.el-gtile:hover .cap { opacity: 1; transform: translateY(0); }
.g-2x2 { grid-column: span 2; grid-row: span 2; }
.g-2x1 { grid-column: span 2; }
@media (max-width: 980px) { .g-2x2 { grid-column: span 2; grid-row: span 2; } .g-2x1 { grid-column: span 2; } }
@media (max-width: 560px) { .g-2x2, .g-2x1 { grid-column: span 1; grid-row: span 1; } }

.el-lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8,11,14,0.94);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  opacity: 0; pointer-events: none; transition: opacity 0.22s;
}
.el-lightbox.open { opacity: 1; pointer-events: auto; touch-action: none; }
.el-lightbox img {
  max-width: 92vw; max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 30px 90px -20px rgba(0,0,0,0.8);
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}
.el-lightbox.dragging img { cursor: grabbing; }
.el-lb-close { position: absolute; top: 24px; right: 28px; background: none; border: 1px solid rgba(255,255,255,0.3); color: var(--paper); width: 46px; height: 46px; border-radius: 50%; font-size: 22px; cursor: pointer; }
.el-lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: 1px solid rgba(255,255,255,0.3); color: var(--paper); width: 52px; height: 52px; border-radius: 50%; font-size: 22px; cursor: pointer; transition: all 0.15s; }
.el-lb-nav:hover { border-color: var(--accent); color: var(--accent); }
.el-lb-prev { left: 28px; } .el-lb-next { right: 28px; }
.el-lb-count { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.14em; color: var(--paper); }
@media (max-width: 700px) { .el-lb-nav { width: 42px; height: 42px; } .el-lb-prev { left: 10px; } .el-lb-next { right: 10px; } }

.el-materials { background: var(--paper); }
.el-mat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); margin-top: 52px; }
@media (max-width: 900px) { .el-mat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .el-mat-grid { grid-template-columns: 1fr; } }
.el-mat { padding: 30px 26px 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; }
.el-mat-ico { width: 34px; height: 34px; color: var(--ink); opacity: 0.85; }
.el-mat-k { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.55; }
.el-mat-name { font-family: var(--font-display); font-size: 22px; line-height: 1.2; }
.el-mat-desc { font-size: 15px; line-height: 1.5; opacity: 0.72; }

.el-loc { background: var(--ink); color: var(--paper); }
.el-loc .eyebrow { color: rgba(244,244,242,0.7); }
.el-loc .chevron-mark { border-left-color: var(--accent); }
.el-loc h2 { color: var(--paper); }
.el-loc h2 .it { font-style: italic; color: var(--accent); }
.el-loc-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: stretch; margin-top: 52px; }
@media (max-width: 980px) { .el-loc-grid { grid-template-columns: 1fr; gap: 32px; } }
.el-loc-text { display: flex; flex-direction: column; gap: 24px; }
.el-loc-text p { font-size: 17px; line-height: 1.6; color: rgba(244,244,242,0.82); margin: 0; text-wrap: pretty; }
.el-loc-list { list-style: none; margin: 8px 0 0; padding: 0; display: flex; flex-direction: column; }
.el-loc-list li { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.12); font-family: var(--font-mono); font-size: 14px; letter-spacing: 0.03em; }
.el-loc-list li:first-child { border-top: 1px solid rgba(255,255,255,0.12); }
.el-loc-list li span:last-child { color: var(--accent); }
.el-loc-map {
  position: relative;
  background: #11151a;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 440px;
}
.el-loc-map svg { width: 100%; height: 100%; display: block; position: absolute; inset: 0; }
.el-loc-map-frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.el-loc-map-badge {
  position: absolute; left: 14px; top: 14px; z-index: 4;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--accent); color: var(--ink); font-weight: 700;
  padding: 6px 11px; box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}
.el-loc-map-pin {
  position: absolute; left: 50%; top: 48%;
  transform: translate(-50%, -100%);
  z-index: 3; pointer-events: none;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.5));
}
.el-loc-map-pin .lbl { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; background: var(--accent); color: var(--ink); padding: 4px 9px; font-weight: 700; }
.el-loc-map-cta {
  position: absolute; right: 14px; bottom: 14px; z-index: 4;
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--paper); color: var(--ink); font-weight: 600;
  padding: 11px 16px; border-radius: var(--radius);
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.16s;
}
.el-loc-map-cta:hover { background: var(--accent); }

.el-inquiry { background: var(--paper); border-top: 1px solid var(--line); }
.el-prefill {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(210,182,0,0.12);
  border: 1px solid rgba(210,182,0,0.4);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.04em; color: var(--ink);
  margin-bottom: 22px;
}
.el-prefill b { font-weight: 700; }
.el-prefill button { background: none; border: none; cursor: pointer; color: var(--ink); opacity: 0.5; font-size: 15px; padding: 0 2px; }
.el-prefill button:hover { opacity: 1; }

.el-consult { background: var(--ecru); border-top: 1px solid var(--line); }
.el-consult-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--paper);
}
@media (max-width: 820px) { .el-consult-card { grid-template-columns: 1fr; } }
.el-consult-photo {
  position: relative;
  min-height: 320px;
  background: var(--sand);
  border-right: 1px solid var(--line);
}
@media (max-width: 820px) { .el-consult-photo { min-height: 220px; border-right: none; border-bottom: 1px solid var(--line); } }
.el-consult-photo .img-placeholder { position: absolute; inset: 0; }
.el-consult-body { padding: 44px 44px; display: flex; flex-direction: column; gap: 18px; }
@media (max-width: 560px) { .el-consult-body { padding: 30px 24px; } }
.el-consult-body h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(28px, 3vw, 42px); line-height: 1.08; letter-spacing: -0.015em; margin: 0; }
.el-consult-body h3 .it { font-style: italic; color: var(--accent); }
.el-consult-body p { font-size: 16px; line-height: 1.6; color: var(--ink); opacity: 0.78; margin: 0; max-width: 52ch; text-wrap: pretty; }
.el-consult-contacts { display: flex; flex-wrap: wrap; gap: 12px 32px; margin-top: 6px; }
.el-consult-contact { display: flex; flex-direction: column; gap: 4px; }
.el-consult-contact .k { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.5; }
.el-consult-contact a { font-family: var(--font-display); font-size: 22px; font-weight: 500; letter-spacing: -0.01em; border-bottom: 1px solid var(--accent); transition: color 0.15s; }
.el-consult-contact a:hover { color: var(--accent); }
.el-consult-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 10px; }

.el-section-head-light .eyebrow { color: rgba(244,244,242,0.7); }
.sample-flag {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(244,244,242,0.5);
}
.sample-flag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.pm-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 76px 24px 24px;
  background: rgba(8, 11, 14, 0.94);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  animation: pmFade 0.2s ease;
}
@keyframes pmFade { from { opacity: 0; } to { opacity: 1; } }

.pm-scroll {
  max-height: 90vh;
  max-width: min(95vw, 900px);
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pm-img {
  height: auto;
  width: auto;
  max-height: 90vh;
  max-width: min(95vw, 900px);
  object-fit: contain;
  display: block;
  background: #fff;
  box-shadow: 0 30px 90px -20px rgba(0, 0, 0, 0.8);
  transform-origin: center center;
  transition: transform 0.12s ease-out;
  touch-action: none;
  user-select: none;
  -webkit-user-drag: none;
}

.pm-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  pointer-events: none;
}
.pm-bar > * { pointer-events: auto; }
.pm-title {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(13, 17, 21, 0.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 9px 14px;
  border-radius: var(--radius);
}
.pm-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-family: var(--font-mono);
  font-size: 16px;
  line-height: 1;
  color: var(--paper);
  background: rgba(13, 17, 21, 0.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.18s, color 0.18s;
}
.pm-btn:hover { border-color: var(--accent); color: var(--accent); }
.pm-btn-rst { font-size: 12.5px; letter-spacing: 0.06em; }
.pm-open {
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}
.pm-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 24px;
  line-height: 1;
  color: var(--paper);
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 0.18s, color 0.18s;
}
.pm-close:hover { border-color: var(--accent); color: var(--accent); }

@media (max-width: 768px) {
  .pm-overlay { padding: 60px 12px 12px; }
  .pm-scroll, .pm-img { max-width: 95vw; }
  .pm-bar { padding: 12px; gap: 10px; }
  .pm-title { font-size: 12px; padding: 7px 10px; }
  .pm-open { display: none; }
}

.ep-sit-img { transform-box: fill-box; transform-origin: center; transition: transform 1.7s cubic-bezier(0.22,0.61,0.36,1); }
.ep-sit-img.intro { transform: scale(1.14); }
@media (prefers-reduced-motion: reduce) {
  .ep-sit-img, .ep-sit-img.intro { transition: none; transform: none; }
}
.ep-viewtoggle-m { flex: none; }

.el-hero-topgrad {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 160px;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,0.28), transparent);
}

.elea-page .site-header .nav-link,
.elea-page .site-header .nav-link-toggle,
.elea-page .site-header .header-tel,
.elea-page .site-header .nav-flagship {
  color: #f4f4f2;
  opacity: 1;
  text-shadow: 0 1px 3px rgba(0,0,0,0.35);
}
.elea-page .site-header .nav-link { opacity: 0.92; }
.elea-page .site-header .nav-link:hover { opacity: 1; }

.elea-page .site-header .logo-img {
  filter: brightness(0) invert(1) drop-shadow(0 1px 3px rgba(0,0,0,0.35));
}

.elea-page .site-header .nav-flagship {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.08);
}
.elea-page .site-header .nav-flagship:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
  text-shadow: none;
}

.elea-page .site-header .burger {
  border-color: rgba(255,255,255,0.5);
}
.elea-page .site-header .burger span {
  background: #f4f4f2;
  box-shadow: 0 1px 3px rgba(0,0,0,0.35);
}

.elea-page .site-header .lang-switch {
  border-color: rgba(255,255,255,0.5);
}
.elea-page .site-header .lang-item {
  color: #f4f4f2;
  opacity: 0.85;
  text-shadow: 0 1px 3px rgba(0,0,0,0.35);
}
.elea-page .site-header .lang-item + .lang-item { border-left-color: rgba(255,255,255,0.35); }
.elea-page .site-header .lang-item.is-active {
  color: var(--ink);
  opacity: 1;
  text-shadow: none;
}
.elea-page .site-header a.lang-item:hover { opacity: 1; color: var(--accent); }

.elea-page .site-header .social-link {
  color: #f4f4f2;
  border-color: rgba(255,255,255,0.5);
  opacity: 0.85;
}
.elea-page .site-header .social-link svg { filter: drop-shadow(0 1px 3px rgba(0,0,0,0.35)); }
.elea-page .site-header .social-link:hover {
  opacity: 1;
  color: var(--accent);
  border-color: var(--accent);
}
.elea-page .site-header .social-link:hover svg { filter: none; }

.elea-page .site-header.is-scrolled {
  background: rgba(13,17,21,0.72);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border-bottom-color: rgba(255,255,255,0.12);
}

.elea-page .el-scrollcue {
  bottom: 8px;
  gap: 5px;
}
.elea-page .el-scrollcue .line { height: 16px; }

.ep-aerial-hot.is-soldout { cursor: default; }
.ep-aerial-hot.is-soldout .ep-aerial-fill {
  fill: var(--st-sold);
  fill-opacity: 0.30;
  stroke: var(--st-sold);
  stroke-dasharray: 6 5;
}
.ep-aerial-hot.is-soldout:hover .ep-aerial-fill { fill-opacity: 0.38; }
.ep-aerial-badge-sold rect { fill: oklch(38% 0.12 25 / 0.92); stroke: rgba(255,255,255,0.25); }
.ep-aerial-badge-sold text { fill: #fff; }

.ep-bcard.is-soldout {
  cursor: default;
  opacity: 0.72;
}
.ep-bcard.is-soldout:hover { border-color: var(--line); transform: none; background: transparent; }
.ep-bcard.is-soldout .ep-bcard-n { background: rgba(255,255,255,0.06); color: rgba(244,244,242,0.45); }
.ep-bcard-soldflag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--st-sold);
  padding: 5px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
