:root {
  --gold:#d7a52e;
  --bg:#020202;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth;background:var(--bg)}
body{
  margin:0;
  min-height:100vh;
  background:
    radial-gradient(circle at 50% 0%,rgba(215,165,46,.10),transparent 34%),
    #020202;
  font-family:Arial,sans-serif;
  overflow-x:hidden;
}
.page-shell{
  width:min(100vw,1024px);
  margin:0 auto;
  position:relative;
  background:#000;
  box-shadow:0 0 80px rgba(0,0,0,.8);
}
.card{
  display:block;
  width:100%;
  height:auto;
  user-select:none;
  -webkit-user-drag:none;
}
.hotspot{
  position:absolute;
  display:block;
  border:1px solid transparent;
  border-radius:6px;
  transition:.25s ease;
  cursor:pointer;
}
.hotspot:hover{
  border-color:rgba(215,165,46,.85);
  box-shadow:0 0 0 3px rgba(215,165,46,.12),0 0 30px rgba(215,165,46,.20);
  background:rgba(215,165,46,.04);
}
.hotspot:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:3px;
}
/* Примеры работ */
.example-wall-before{left:47.2%;top:11.7%;width:24.0%;height:8.2%}
.example-wall-after{left:72.2%;top:11.7%;width:25.5%;height:8.2%}
.example-floor-before{left:47.2%;top:21.9%;width:24.0%;height:8.2%}
.example-floor-after{left:72.2%;top:21.9%;width:25.5%;height:8.2%}
.example-ceiling-before{left:47.2%;top:32.2%;width:24.0%;height:7.8%}
.example-ceiling-after{left:72.2%;top:32.2%;width:25.5%;height:7.8%}
.example-channel-left{left:47.2%;top:41.7%;width:24.0%;height:7.9%}
.example-channel-right{left:72.2%;top:41.7%;width:25.5%;height:7.9%}
/* Материалы */
.material-1{left:2.0%;top:64.0%;width:12.2%;height:12.7%}
.material-2{left:14.7%;top:64.0%;width:12.2%;height:12.7%}
.material-3{left:27.4%;top:64.0%;width:11.8%;height:12.7%}
.material-4{left:39.6%;top:64.0%;width:11.8%;height:12.7%}
.material-5{left:51.8%;top:64.0%;width:11.8%;height:12.7%}
/* Примеры объектов */
.object-1{left:2.0%;top:79.5%;width:17.4%;height:9.6%}
.object-2{left:20.0%;top:79.5%;width:18.9%;height:9.6%}
.object-3{left:39.5%;top:79.5%;width:18.1%;height:9.6%}
.object-4{left:58.3%;top:79.5%;width:18.1%;height:9.6%}
.object-5{left:77.0%;top:79.5%;width:20.3%;height:9.6%}
.cta{left:43.8%;top:91.1%;width:22.5%;height:5.0%}
.tooltip{
  position:fixed;
  z-index:50;
  pointer-events:none;
  opacity:0;
  transform:translateY(8px);
  transition:.18s ease;
  background:rgba(5,5,5,.94);
  color:#f3e5bd;
  border:1px solid rgba(215,165,46,.65);
  padding:9px 12px;
  font-size:12px;
  letter-spacing:.03em;
  border-radius:4px;
  box-shadow:0 12px 30px rgba(0,0,0,.45);
  max-width:240px;
}
.tooltip.show{opacity:1;transform:none}
@media(max-width:700px){
  .page-shell{width:100vw}
  .hotspot:hover{box-shadow:none}
}
@media(prefers-reduced-motion:reduce){
  *{transition:none!important;scroll-behavior:auto!important}
}

.real-projects{
  width:min(100vw,1024px);
  margin:0 auto;
  background:#020202;
  color:#f4f1e8;
  padding:14px 18px 22px;
  border-top:1px solid rgba(215,165,46,.55);
}
.real-projects h2{
  margin:0 0 14px;
  color:#e1ad3e;
  font-family:Georgia,"Times New Roman",serif;
  font-size:24px;
  text-align:center;
  letter-spacing:.04em;
}
.project-card{
  border:1px solid rgba(215,165,46,.78);
  background:linear-gradient(180deg,#0b0b0b,#050505);
  margin:0 0 14px;
  box-shadow:inset 0 0 24px rgba(215,165,46,.025);
}
.project-head{
  display:grid;
  grid-template-columns:1fr auto;
  gap:14px;
  align-items:start;
  padding:14px 16px;
  border-bottom:1px solid rgba(215,165,46,.4);
}
.project-title{
  color:#e2ad3f;
  font-family:Georgia,"Times New Roman",serif;
  font-size:21px;
  margin:0 0 4px;
}
.project-desc{
  margin:0;
  color:#ddd6c8;
  line-height:1.45;
  font-size:14px;
}
.price-badge{
  border:1px solid #d7a52e;
  color:#f2c45d;
  padding:10px 12px;
  border-radius:5px;
  font-weight:700;
  white-space:nowrap;
}
.gallery{
  display:grid;
  gap:8px;
  padding:10px;
}
.gallery.two{grid-template-columns:repeat(2,minmax(0,1fr))}
.gallery.four{grid-template-columns:repeat(4,minmax(0,1fr))}
.gallery figure{
  margin:0;
  border:1px solid rgba(215,165,46,.7);
  background:#070707;
  min-width:0;
}
.gallery button{
  all:unset;
  display:block;
  cursor:pointer;
  width:100%;
}
.gallery img{
  display:block;
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  background:#111;
}
.gallery figcaption{
  padding:8px 9px 10px;
  color:#f0c05c;
  font-size:12px;
  line-height:1.3;
  text-align:center;
}
.work-list{
  margin:0;
  padding:0 18px 14px 34px;
  color:#e7e2d8;
  line-height:1.55;
  font-size:14px;
}
.real-cta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  border:1px solid rgba(215,165,46,.78);
  padding:14px 16px;
  background:#080808;
}
.real-cta strong{
  display:block;
  color:#e2ad3f;
  font-family:Georgia,"Times New Roman",serif;
  font-size:20px;
  margin-bottom:4px;
}
.real-cta a{
  color:#111;
  text-decoration:none;
  font-weight:800;
  background:linear-gradient(#f4c75f,#b97a10);
  border:1px solid #f1c257;
  border-radius:5px;
  padding:13px 18px;
  white-space:nowrap;
}
.lightbox{
  position:fixed;
  inset:0;
  z-index:10000;
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  background:rgba(0,0,0,.92);
}
.lightbox.open{display:flex}
.lightbox-card{
  width:min(1100px,96vw);
  max-height:94vh;
  overflow:auto;
  background:#070707;
  border:1px solid #d7a52e;
  box-shadow:0 0 70px rgba(215,165,46,.22);
}
.lightbox-top{
  position:sticky;
  top:0;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 12px;
  background:rgba(5,5,5,.97);
  border-bottom:1px solid rgba(215,165,46,.45);
}
.lightbox-title{color:#f1c45d;font-weight:700}
.lightbox-close{
  border:1px solid #d7a52e;
  background:#0a0a0a;
  color:#f1c45d;
  padding:7px 11px;
  border-radius:4px;
  cursor:pointer;
}
.lightbox img{
  display:block;
  width:100%;
  height:auto;
}
@media(max-width:760px){
  .project-head{grid-template-columns:1fr}
  .price-badge{justify-self:start}
  .gallery.four{grid-template-columns:repeat(2,minmax(0,1fr))}
  .real-cta{align-items:flex-start;flex-direction:column}
}

/* ---- extracted style block ---- */

.ramerk-card-switch{position:fixed;top:50%;transform:translateY(-50%);z-index:2147483000;width:74px;height:118px;display:flex;align-items:center;justify-content:center;text-decoration:none;color:#d8a84f;background:linear-gradient(180deg,rgba(8,7,5,.88),rgba(2,2,2,.94));border:1px solid rgba(216,168,79,.42);box-shadow:0 12px 42px rgba(0,0,0,.55),inset 0 0 22px rgba(216,168,79,.035);font:400 36px/1 Georgia,serif;transition:width .25s ease,background .25s ease,color .25s ease,border-color .25s ease;backdrop-filter:blur(5px)}
  .ramerk-card-switch.prev{left:18px}.ramerk-card-switch.next{right:18px}
  .ramerk-card-switch span{position:absolute;top:calc(100% + 8px);white-space:nowrap;font:600 9px/1.2 Arial,sans-serif;letter-spacing:.18em;text-transform:uppercase;color:rgba(244,211,127,.78);opacity:0;transition:opacity .2s ease}
  .ramerk-card-switch:hover,.ramerk-card-switch:focus-visible{width:88px;color:#f4d37f;background:linear-gradient(180deg,rgba(34,24,10,.96),rgba(5,4,3,.98));border-color:rgba(244,211,127,.9);outline:none}
  .ramerk-card-switch:hover span,.ramerk-card-switch:focus-visible span{opacity:1}
  .ramerk-card-home{position:fixed;right:18px;bottom:18px;z-index:2147483000;padding:12px 16px;color:#d8a84f;text-decoration:none;background:rgba(3,3,3,.9);border:1px solid rgba(216,168,79,.42);font:600 9px/1 Arial,sans-serif;letter-spacing:.16em;text-transform:uppercase}
  .ramerk-zoomable{cursor:zoom-in!important;transition:filter .25s ease,transform .25s ease!important}
  .ramerk-zoomable:hover{filter:brightness(1.08) contrast(1.03);}
  #ramerk-lightbox{position:fixed;inset:0;z-index:2147483646;display:none;align-items:center;justify-content:center;padding:42px;background:rgba(0,0,0,.94);cursor:zoom-out}
  #ramerk-lightbox.open{display:flex}
  #ramerk-lightbox img{max-width:96vw;max-height:92vh;width:auto!important;height:auto!important;object-fit:contain!important;position:static!important;transform:none!important;filter:none!important;border:1px solid rgba(216,168,79,.55);box-shadow:0 24px 90px rgba(0,0,0,.85)}
  #ramerk-lightbox button{position:fixed;right:22px;top:20px;width:46px;height:46px;border:1px solid rgba(216,168,79,.6);background:#090806;color:#f4d37f;font-size:25px;cursor:pointer}
  @media(max-width:900px){.ramerk-card-switch{width:48px;height:82px;font-size:27px}.ramerk-card-switch.prev{left:6px}.ramerk-card-switch.next{right:6px}.ramerk-card-switch span{display:none}.ramerk-card-home{right:8px;bottom:8px;padding:10px;font-size:8px}#ramerk-lightbox{padding:18px}}

/* Keep every solution card below the fixed site header. */
body.ramerk-has-global { padding-top: 110px !important; }
