:root {
  font-family: Arial, Helvetica, sans-serif;
  color: #193b32;
  background: #f7f6f2;
  font-synthesis: none;
  --green: #173c32;
  --copper: #ad7650;
  --muted: #6c756f;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button:disabled {
  opacity: 0.6;
  cursor: wait;
}
[hidden] {
  display: none !important;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
[role="button"]:focus-visible {
  outline: 3px solid #c78c47;
  outline-offset: 4px;
}
button {
  min-height: 44px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-weight: 400;
}
h1,
h2,
.card h3,
.login-content h1 {
  font-family: Georgia, "Times New Roman", serif;
}
.site-header {
  height: 108px;
  max-width: 1440px;
  margin: auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dce0d9;
  gap: 20px;
}
.brand {
  display: flex;
  gap: 13px;
  align-items: center;
  font-family: Georgia, serif;
  letter-spacing: 2px;
  font-size: 19px;
  white-space: nowrap;
}
.brand-icon {
  font-size: 36px;
  border: 1px solid #7c9186;
  border-radius: 45% 45% 0 0;
  width: 49px;
  height: 56px;
  display: grid;
  place-items: center;
  font-style: italic;
  letter-spacing: 0;
}
.brand small {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 2.4px;
  margin-top: 9px;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.private-tag,
.eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
}
.private-tag:before {
  content: "●";
  color: var(--copper);
  font-size: 8px;
  margin-right: 10px;
}
.language {
  background: transparent;
  border: 0;
  padding: 10px;
  color: inherit;
  font-size: 14px;
}
.text-button {
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 14px;
}
.intro {
  max-width: 1440px;
  margin: auto;
  padding: 70px 5% 45px;
}
.eyebrow {
  color: #8a6546;
}
.intro h1 {
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.08;
  letter-spacing: -2px;
  margin: 20px 0;
}
.intro p {
  max-width: 570px;
  line-height: 1.7;
  color: var(--muted);
  font-size: 17px;
}
.catalog {
  max-width: 1440px;
  margin: auto;
  padding: 0 5% 70px;
}
.section-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #dce0d9;
  padding-top: 32px;
}
.section-heading h2 {
  font-size: 27px;
  margin: 0;
}
.section-heading > span {
  font-size: 13px;
  border: 1px solid #cbd4cb;
  border-radius: 99px;
  padding: 5px 10px;
  color: var(--muted);
}
.demo-note {
  font-size: 14px;
  color: var(--muted);
  margin: 15px 0 25px;
  line-height: 1.6;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.card {
  background: white;
  border: 1px solid #e2e4dc;
  transition: transform 0.2s;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
}
.card-visual {
  position: relative;
  aspect-ratio: 1.48;
  background: #d7ded4;
  overflow: hidden;
}
.card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.card:hover img {
  transform: scale(1.025);
}
.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  background: #f9faf1ed;
  color: #294739;
  font-size: 12px;
  letter-spacing: 0.3px;
}
.round-arrow {
  position: absolute;
  bottom: 17px;
  right: 17px;
  border-radius: 50%;
  width: 39px;
  height: 39px;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 24px;
}
.card-body {
  padding: 24px;
}
.card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #827561;
}
.card h3 {
  font-size: 34px;
  margin: 14px 0 10px;
}
.card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  min-height: 48px;
}
.card-link {
  display: block;
  border-top: 1px solid #e5e7df;
  padding-top: 17px;
  font-size: 14px;
}
footer {
  max-width: 1440px;
  margin: auto;
  padding: 25px 5%;
  border-top: 1px solid #dce0d9;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}
.primary {
  background: var(--green);
  color: white;
  border: 0;
  padding: 15px 22px;
  font-size: 15px;
}
.primary:hover {
  background: #245142;
}
.login-layout {
  min-height: calc(100svh - 108px);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.login-art {
  background: var(--green);
  color: #dfd5b5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 620px;
  overflow: hidden;
}
.arch {
  width: 60%;
  max-width: 320px;
  aspect-ratio: 0.8;
  border: 1px solid #9daa7c;
  border-radius: 50% 50% 0 0;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.arch > span {
  font-family: Georgia, serif;
  font-size: 80px;
  position: relative;
  z-index: 1;
}
.horizon {
  position: absolute;
  bottom: -100px;
  width: 500px;
  height: 230px;
  border: 1px solid #9daa7c;
  border-radius: 50%;
  box-shadow:
    0 -20px 0 -19px #9daa7c,
    0 -50px 0 -49px #9daa7c,
    0 -80px 0 -79px #9daa7c;
}
.login-art > p {
  letter-spacing: 7px;
  font-family: Georgia, serif;
  font-size: 22px;
  margin: 35px 0 12px;
}
.login-art > span {
  letter-spacing: 4px;
  font-size: 10px;
}
.login-content {
  max-width: 530px;
  padding: 70px 45px;
  margin: auto;
}
.login-content h1 {
  font-size: 48px;
  line-height: 1.1;
  margin: 22px 0;
}
.login-content > p {
  line-height: 1.7;
  color: var(--muted);
}
#login-form {
  margin: 34px 0 45px;
}
label {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
}
input {
  width: 100%;
  border: 1px solid #bcc8bd;
  border-radius: 0;
  background: white;
  padding: 14px;
  color: var(--green);
  font-size: 16px;
}
#login-form button {
  width: 100%;
  margin-top: 16px;
}
#login-error {
  font-size: 14px;
  color: #a33d2c;
  margin-top: 14px;
}
.login-content > small {
  color: var(--muted);
  letter-spacing: 2px;
}
#tour-view {
  position: fixed;
  inset: 0;
  background: #12241d;
  color: white;
  z-index: 10;
}
#panorama {
  width: 100%;
  height: 100%;
}
.tour-top {
  position: absolute;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 30px 50px;
  background: linear-gradient(#061b20c9, transparent);
  pointer-events: none;
}
.tour-top > * {
  pointer-events: auto;
}
.glass {
  color: white;
  border: 1px solid #ffffff50;
  border-radius: 5px;
  background: #173429d9;
  padding: 10px 17px;
  backdrop-filter: blur(12px);
  font-size: 14px;
}
.glass:hover,
.glass[aria-pressed="true"] {
  background: #52704b;
}
.tour-title small {
  font-size: 12px;
  letter-spacing: 1px;
  color: #e2e5dc;
}
.tour-title h2 {
  font-size: 23px;
  margin: 6px 0 0;
}
.demo-pill {
  margin-left: auto;
  font-size: 12px;
  background: #173429d9;
  padding: 9px 13px;
  border-radius: 4px;
}
.tour-bottom {
  position: absolute;
  inset: auto 0 0;
  padding: 50px 30px 25px;
  background: linear-gradient(transparent, #061b20c9);
  pointer-events: none;
}
.tour-bottom > p {
  text-align: center;
  font-size: 14px;
  text-shadow: 0 1px 3px #000;
  margin-bottom: 18px;
}
.control-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  pointer-events: auto;
}
.control-group {
  display: flex;
  gap: 5px;
}
.control-group button {
  min-width: 46px;
  font-size: 23px;
  padding: 8px 12px;
}
.panel {
  position: absolute;
  left: 25px;
  bottom: 105px;
  width: 330px;
  max-width: calc(100% - 50px);
  max-height: calc(100% - 230px);
  background: #fafbf6;
  color: var(--green);
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 10px 35px #0004;
  overflow: auto;
}
.panel-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.panel h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 25px;
}
.close-panel {
  border: 0;
  background: none;
  font-size: 25px;
  color: inherit;
  width: 44px;
}
.scene-item {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  border-bottom: 1px solid #dce3d8;
  background: none;
  color: inherit;
  padding: 15px 10px;
  font-size: 14px;
}
.scene-item.active {
  background: #e3eadc;
  font-weight: 600;
}
#scene-list {
  margin-top: 10px;
}
#floorplan {
  position: relative;
}
#floorplan img {
  width: 100%;
  display: block;
}
.map-dot {
  position: absolute;
  transform: translate(-50%, -50%);
  background: #254839;
  color: white;
  border: 2px solid white;
  border-radius: 50%;
  width: 42px;
  min-height: 42px;
  font-size: 11px;
  cursor: pointer;
}
.map-dot.active {
  background: #986738;
}
#tour-status {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  padding: 20px;
  background: #173429ed;
  text-align: center;
  line-height: 1.6;
  border-radius: 5px;
}
#tour-status button {
  display: block;
  margin: 12px auto 0;
}
.nav-hotspot,
.info-hotspot {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #f8f8edeb;
  color: #234934;
  border: 2px solid #fff;
  display: grid;
  place-items: center;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 3px 18px #0005;
}
.info-hotspot {
  background: #244a37;
  color: white;
  font-family: Georgia, serif;
  font-size: 22px;
}
.hotspot-label {
  position: absolute;
  bottom: 54px;
  left: 50%;
  transform: translateX(-50%);
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: white;
  background: #173429ef;
  min-width: 130px;
  max-width: 250px;
  padding: 10px 14px;
  border-radius: 4px;
  visibility: hidden;
  line-height: 1.5;
  text-align: center;
}
.nav-hotspot:hover .hotspot-label,
.nav-hotspot:focus .hotspot-label,
.info-hotspot:hover .hotspot-label,
.info-hotspot:focus .hotspot-label,
.info-hotspot.expanded .hotspot-label {
  visibility: visible;
}
.pnlm-about-msg {
  display: none !important;
}
@media (min-width: 1500px) {
  .intro {
    padding-top: 85px;
  }
  .cards {
    gap: 32px;
  }
}
@media (max-width: 950px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .private-tag {
    display: none;
  }
  .login-content {
    padding: 40px 30px;
  }
  .login-content h1 {
    font-size: 40px;
  }
  .login-art {
    min-height: 550px;
  }
}
@media (max-width: 600px) {
  .site-header {
    height: 85px;
    padding: 0 20px;
  }
  .brand {
    font-size: 15px;
    gap: 9px;
    letter-spacing: 1px;
  }
  .brand-icon {
    width: 39px;
    height: 47px;
    font-size: 29px;
  }
  .brand small {
    font-size: 8px;
    letter-spacing: 1.3px;
  }
  .header-right {
    gap: 4px;
  }
  .text-button {
    font-size: 12px;
    padding: 4px;
  }
  .language {
    padding: 7px;
  }
  .intro {
    padding: 45px 22px 30px;
  }
  .intro h1 {
    font-size: 43px;
    letter-spacing: -1.5px;
  }
  .intro p {
    font-size: 16px;
  }
  .catalog {
    padding: 0 22px 45px;
  }
  .section-heading h2 {
    font-size: 24px;
  }
  .cards {
    grid-template-columns: 1fr;
    gap: 23px;
  }
  .card-body {
    padding: 22px;
  }
  .card p {
    min-height: 0;
  }
  .card-visual {
    aspect-ratio: 1.65;
  }
  footer {
    padding: 22px;
    gap: 15px;
    font-size: 12px;
  }
  .login-layout {
    display: block;
    min-height: calc(100svh - 85px);
  }
  .login-art {
    display: none;
  }
  .login-content {
    padding: 60px 25px;
    max-width: 460px;
  }
  .login-content h1 {
    font-size: 45px;
  }
  .tour-top {
    padding: 15px 12px 40px;
    gap: 12px;
    align-items: flex-start;
  }
  .tour-title h2 {
    font-size: 19px;
  }
  .tour-title small {
    font-size: 11px;
  }
  .demo-pill {
    position: absolute;
    top: 85px;
    right: 12px;
    font-size: 10px;
  }
  .glass {
    padding: 10px 12px;
  }
  .tour-bottom {
    padding: 40px 12px max(20px, env(safe-area-inset-bottom));
  }
  .tour-bottom > p {
    font-size: 12px;
    max-width: 300px;
    margin: 0 auto 16px;
    line-height: 1.5;
  }
  .control-row {
    gap: 7px;
  }
  .control-group {
    gap: 4px;
  }
  .control-group button {
    min-width: 40px;
    padding: 6px 8px;
  }
  .panel {
    left: 12px;
    bottom: 130px;
    max-width: calc(100% - 24px);
    max-height: calc(100% - 250px);
  }
  .hotspot-label {
    max-width: 190px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.tour-language {
  margin-left: auto;
}
.tour-language option {
  color: #173c32;
  background: #fff;
}
.tour-top .demo-pill {
  margin-left: 0;
}
