:root {
  --bg: #f3f8f6;
  --card: #fff;
  --text: #10231d;
  --muted: #66756d;
  --line: #dce9e2;
  --green: #16764b;
  --green2: #0f9b7b;
  --deep: #0f332b;
  --blue: #2563eb;
  --gold: #f59e0b;
  --red: #ef4444;
  --shadow: 0 24px 70px rgba(15, 35, 29, .12);
  --shadow2: 0 14px 34px rgba(15, 35, 29, .08);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Tahoma, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0, rgba(22, 118, 75, .14), transparent 30%),
    radial-gradient(circle at 90% 6%, rgba(15, 155, 123, .13), transparent 28%),
    var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 28px rgba(15, 35, 29, .06);
}

.nav {
  display: flex;
  max-width: 1440px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: auto;
  padding: 12px 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(135deg, var(--deep), var(--green2));
  box-shadow: 0 12px 28px rgba(22, 118, 75, .26);
  color: #fff;
  font-weight: 900;
}

.brand-text strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
}

.brand-text span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.menu a {
  border-radius: 999px;
  padding: 9px 12px;
  color: #475569;
  font-size: 14px;
  font-weight: 800;
}

.menu a:hover,
.menu a.active {
  background: #eafff4;
  color: var(--green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--green), var(--green2));
  box-shadow: 0 14px 28px rgba(22, 118, 75, .24);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  padding: 12px 16px;
}

.btn.dark {
  background: linear-gradient(135deg, #10231d, #0f332b);
  box-shadow: 0 14px 28px rgba(15, 35, 29, .20);
}

.btn.gold {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  box-shadow: 0 14px 28px rgba(245, 158, 11, .22);
}

.btn.ghost {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: none;
  color: var(--text);
}

.wrap {
  max-width: 1440px;
  margin: auto;
  padding: 20px 18px 96px;
}

.hero-map {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 18px;
  align-items: stretch;
  margin-top: 8px;
}

.map-card {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 38px;
  background: linear-gradient(180deg, #bfeee0 0, #eafff4 36%, #d8f3dc 66%, #a3c585 100%);
  box-shadow: var(--shadow);
  color: #fff;
}

.map-card.has-real-map {
  align-self: start;
  min-height: 0;
  border-color: rgba(15, 51, 43, .18);
  background: #0f332b;
}

.map-card.has-real-map::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 51, 43, .60), rgba(15, 51, 43, .12) 38%, rgba(15, 51, 43, .28)),
    radial-gradient(circle at 70% 58%, transparent 0 38%, rgba(15, 51, 43, .18) 72%);
  pointer-events: none;
}

.real-map-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(1.05) contrast(1.03);
}

.map-card.has-real-map .hotspot {
  z-index: 26;
}

.map-card.has-real-map .pin-house {
  width: auto;
  min-height: 0;
  filter: drop-shadow(0 18px 20px rgba(15, 35, 29, .30));
}

.map-card.has-real-map .pin-house .roof {
  display: none;
}

.map-card.has-real-map .pin-house .base {
  width: auto;
  min-width: 62px;
  height: auto;
  border: 3px solid #fff;
  border-radius: 999px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 26px rgba(15, 35, 29, .20);
  font-size: 13px;
  padding: 9px 13px;
}

.map-card.has-real-map .pin-house .status {
  top: -4px;
  right: -4px;
}

.map-toolbar {
  position: absolute;
  z-index: 20;
  top: 22px;
  right: 22px;
  left: 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.map-title {
  max-width: 640px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 24px;
  background: rgba(15, 51, 43, .84);
  backdrop-filter: blur(12px);
  padding: 16px;
}

.map-title .eyebrow {
  display: inline-flex;
  margin-bottom: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #eafff4;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
}

.map-title h1 {
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1.2;
}

.map-title p {
  margin: 0;
  color: #dcfff0;
  font-size: 14px;
  line-height: 1.65;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.map-actions button {
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  color: #0f332b;
  cursor: pointer;
  font-weight: 900;
  padding: 10px 12px;
}

.illustration {
  position: absolute;
  inset: 0;
}

.sky-sun {
  position: absolute;
  top: 15%;
  right: 9%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff7c2 0 28%, #facc15 29% 55%, rgba(250, 204, 21, .12) 56%);
  box-shadow: 0 0 70px rgba(250, 204, 21, .42);
}

.mountains {
  position: absolute;
  top: 18%;
  right: -5%;
  left: -5%;
  height: 240px;
  background:
    linear-gradient(145deg, transparent 0 40%, rgba(19, 78, 74, .45) 41% 100%),
    linear-gradient(35deg, transparent 0 48%, rgba(20, 83, 45, .38) 49% 100%);
  clip-path: polygon(0 100%, 12% 52%, 24% 76%, 40% 28%, 54% 70%, 69% 20%, 83% 62%, 100% 38%, 100% 100%);
  opacity: .75;
}

.mist {
  position: absolute;
  top: 38%;
  right: 8%;
  left: 8%;
  height: 86px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .45);
  filter: blur(16px);
}

.lake {
  position: absolute;
  right: 10%;
  bottom: 8%;
  left: 8%;
  height: 140px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 48% 52% 45% 55%;
  background: linear-gradient(180deg, rgba(14, 165, 233, .45), rgba(20, 184, 166, .28));
}

.path {
  position: absolute;
  top: 48%;
  left: 17%;
  width: 68%;
  height: 34%;
  border: 22px solid rgba(146, 111, 59, .34);
  border-bottom-color: rgba(146, 111, 59, .25);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-7deg);
}

.main-road {
  position: absolute;
  right: 7%;
  bottom: 23%;
  left: 7%;
  height: 28px;
  border-radius: 999px;
  background: rgba(113, 85, 48, .45);
  box-shadow: 0 32px 0 rgba(113, 85, 48, .25);
  transform: rotate(-3deg);
}

.tree {
  position: absolute;
  width: 28px;
  height: 44px;
  border-radius: 20px 20px 6px 6px;
  background: #16764b;
  box-shadow: 0 12px 0 -7px #0f5132;
}

.t1 { left: 10%; top: 42%; }
.t2 { left: 18%; top: 36%; }
.t3 { left: 26%; top: 53%; }
.t4 { right: 18%; top: 41%; }
.t5 { right: 10%; top: 58%; }
.t6 { left: 54%; top: 39%; }
.t7 { left: 72%; top: 55%; }
.t8 { left: 36%; top: 69%; }

.hotspot {
  position: absolute;
  z-index: 15;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.pin-house {
  display: grid;
  width: 86px;
  min-height: 74px;
  place-items: center;
  text-align: center;
  filter: drop-shadow(0 14px 18px rgba(15, 35, 29, .18));
}

.pin-house .roof {
  width: 74px;
  height: 36px;
  margin-bottom: -10px;
  background: #8b5a2b;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.pin-house .base {
  display: grid;
  width: 68px;
  height: 42px;
  place-items: center;
  border: 2px solid rgba(15, 51, 43, .16);
  border-radius: 14px 14px 8px 8px;
  background: #fff;
  color: #0f332b;
  font-size: 12px;
  font-weight: 900;
  padding-top: 4px;
}

.pin-house .status {
  position: absolute;
  top: 0;
  right: 2px;
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-radius: 50%;
}

.pin-house.ok .status { background: #16a34a; }
.pin-house.few .status { background: #f59e0b; }
.pin-house.full .status { background: #ef4444; }
.hotspot:hover .pin-house { transform: translateY(-6px); }
.hotspot.selected .pin-house {
  transform: translateY(-8px) scale(1.04);
}

.hotspot.selected .pin-house .base {
  border-color: #facc15;
  box-shadow: 0 16px 32px rgba(245, 158, 11, .28);
}

.h-a101 { left: 24%; top: 56%; }
.h-a102 { left: 34%; top: 48%; }
.h-b201 { left: 49%; top: 57%; }
.h-d01 { left: 64%; top: 44%; }
.h-d02 { left: 74%; top: 52%; }
.h-villa { left: 66%; top: 70%; }
.h-tent { left: 30%; top: 76%; }

.map-label {
  position: absolute;
  z-index: 14;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 10px 22px rgba(15, 35, 29, .10);
  color: #0f332b;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 11px;
}

.label-parking { left: 10%; bottom: 29%; }
.label-cafe { right: 10%; top: 32%; }
.label-view { left: 46%; top: 31%; }
.label-lake { right: 18%; bottom: 12%; }

.detail-panel {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 38px;
  background: #fff;
  box-shadow: var(--shadow);
}

.selected-photo {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: linear-gradient(135deg, #dbeafe, #ccfbf1 60%, #bbf7d0);
}

.selected-photo.has-image {
  background-position: center;
  background-size: cover;
}

.selected-photo.has-image::before,
.selected-photo.has-image::after {
  display: none;
}

.selected-photo::before {
  content: "";
  position: absolute;
  right: 32px;
  bottom: 30px;
  left: 32px;
  height: 102px;
  border-radius: 24px 24px 8px 8px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(15, 35, 29, .16);
}

.selected-photo::after {
  content: "";
  position: absolute;
  right: 14%;
  bottom: 122px;
  left: 14%;
  height: 80px;
  background: #8b5a2b;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.selected-body {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.selected-tag {
  display: inline-flex;
  width: max-content;
  border-radius: 999px;
  background: #eafff4;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
}

.selected-body h2 {
  margin: 0;
  font-size: 26px;
}

.selected-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.selected-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.meta {
  border: 1px solid #eef2f7;
  border-radius: 16px;
  background: #f8fafc;
  padding: 12px;
}

.meta span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
}

.meta strong {
  font-size: 18px;
}

.amenity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.amenity-list span {
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 9px;
}

.mini-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.field label {
  display: block;
  margin: 0 0 6px;
  color: #475569;
  font-size: 12px;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  font-size: 14px;
  outline: 0;
  padding: 11px 12px;
}

.field textarea {
  min-height: 76px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(22, 118, 75, .10);
}

.span-2 {
  grid-column: span 2;
}

.total-box {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #f8fafc;
  padding: 14px;
}

.total-line {
  display: flex;
  justify-content: space-between;
  color: #475569;
  font-size: 14px;
}

.total-line.total {
  border-top: 1px dashed #cbd5e1;
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
  padding-top: 8px;
}

.notice {
  border: 1px solid #bfdbfe;
  border-radius: 18px;
  background: #eff6ff;
  color: #1e3a8a;
  line-height: 1.6;
  margin: 0;
  padding: 12px;
}

.notice.fail {
  border-color: #fecaca;
  background: #fef2f2;
  color: #991b1b;
}

.section {
  margin-top: 28px;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 16px;
}

.section-title h2 {
  margin: 0;
  font-size: 30px;
}

.section-title p {
  max-width: 820px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.quick-card {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow2);
  padding: 16px;
}

.quick-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 17px;
  background: #eafff4;
  font-size: 24px;
}

.quick-card strong {
  display: block;
  font-size: 20px;
}

.quick-card span {
  color: var(--muted);
  font-size: 12px;
}

.availability-board {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 16px;
}

.availability-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.availability-legend span {
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
}

.availability-legend .ok,
.availability-day.ok {
  background: linear-gradient(135deg, #ecfdf5, #dcfce7);
  border-color: #bbf7d0;
}

.availability-legend .ok {
  background: #16a34a;
}

.availability-legend .few,
.availability-day.few {
  background: linear-gradient(135deg, #fff7ed, #fef3c7);
  border-color: #fed7aa;
}

.availability-legend .few {
  background: #f59e0b;
}

.availability-legend .full,
.availability-day.full {
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  border-color: #fecaca;
}

.availability-legend .full {
  background: #ef4444;
}

.availability-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.availability-day {
  display: grid;
  min-width: 0;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--text);
  padding: 12px;
  transition: transform .18s ease, box-shadow .18s ease;
}

.availability-day:hover {
  box-shadow: 0 16px 34px rgba(15, 35, 29, .12);
  transform: translateY(-2px);
}

.availability-day .weekday {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.availability-day strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.availability-day em {
  color: var(--green);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.availability-day.full em {
  color: var(--red);
}

.availability-day.few em {
  color: #b45309;
}

.room-stock {
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, .70);
  color: #334155;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.room-stock.full {
  color: #991b1b;
}

.room-stock.few {
  color: #92400e;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.room-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow2);
}

.room-img {
  position: relative;
  height: 150px;
  background: linear-gradient(135deg, #e0f2fe, #dcfce7);
  background-position: center;
  background-size: cover;
}

.room-img:not(.has-image)::before {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 22px;
  left: 28px;
  height: 76px;
  border-radius: 22px 22px 8px 8px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(15, 35, 29, .12);
}

.room-img:not(.has-image)::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 38%;
  width: 74px;
  height: 58px;
  background: #8b5a2b;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.room-body {
  padding: 16px;
}

.room-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.room-top h3 {
  margin: 0 0 5px;
  font-size: 18px;
}

.room-top p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.price {
  color: var(--green);
  font-weight: 900;
  white-space: nowrap;
}

.room-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0;
}

.room-tags span {
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 8px;
}

.room-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.timeline-book {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 18px;
}

.step {
  border: 1px solid #eef2f7;
  border-radius: 20px;
  background: #f8fafc;
  padding: 16px;
}

.step b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
}

.step strong {
  display: block;
  margin-bottom: 6px;
}

.step span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.facility {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow2);
  padding: 16px;
  text-align: center;
}

.facility b {
  display: block;
  margin-bottom: 8px;
  font-size: 26px;
}

.facility span {
  color: #334155;
  font-size: 13px;
  font-weight: 900;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.city-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow2);
  padding: 22px;
}

.city-card::before {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  opacity: .16;
}

.city-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 15px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.city-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.35;
}

.city-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.accent-blue span,
.accent-blue::before {
  background: #2563eb;
}

.accent-green span,
.accent-green::before {
  background: #16a34a;
}

.accent-gold span,
.accent-gold::before {
  background: #f59e0b;
}

.accent-red span,
.accent-red::before {
  background: #ef4444;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow2);
  padding: 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  color: var(--text);
  font-size: 16px;
  font-weight: 900;
  padding: 18px 20px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--green);
  font-size: 20px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  border-top: 1px solid #eef2f7;
  color: var(--muted);
  line-height: 1.7;
  padding: 0 20px 18px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.map-small,
.reviews,
.site-footer {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.map-small-visual {
  position: relative;
  height: 350px;
  background:
    linear-gradient(90deg, rgba(22, 118, 75, .08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(22, 118, 75, .08) 1px, transparent 1px),
    #effaf2;
  background-size: 42px 42px;
}

.small-pin {
  position: absolute;
  top: 44%;
  left: 50%;
  width: 56px;
  height: 56px;
  border-radius: 20px 20px 20px 6px;
  background: linear-gradient(135deg, var(--green), var(--green2));
  box-shadow: 0 16px 32px rgba(22, 118, 75, .28);
  transform: rotate(-45deg);
}

.small-pin::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 19px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
}

.map-text {
  padding: 18px;
}

.map-text h3 {
  margin: 0 0 8px;
}

.map-text p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.review-list {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.review {
  border: 1px solid #eef2f7;
  border-radius: 18px;
  background: #f8fafc;
  padding: 14px;
}

.stars {
  margin-bottom: 8px;
  color: #f59e0b;
  letter-spacing: 1px;
}

.review p {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.65;
}

.review strong {
  display: block;
  margin-top: 10px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  padding: 18px;
}

.site-footer strong {
  display: block;
  margin-bottom: 4px;
}

.site-footer span {
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  padding: 10px 12px;
}

.footer-links a.login-link {
  border-color: #bbf7d0;
  background: #eafff4;
  color: var(--green);
}

.floating-contact {
  position: fixed;
  z-index: 1100;
  bottom: 14px;
  left: 50%;
  display: flex;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 45px rgba(15, 35, 29, .18);
  padding: 8px;
  transform: translateX(-50%);
}

.floating-contact a {
  display: flex;
  min-width: max-content;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  padding: 10px 13px;
}

.fc-line { background: #06c755; }
.fc-call { background: #16764b; }
.fc-map { background: #0f332b; }
.fc-book { background: #f59e0b; }

@media (max-width: 1180px) {
  .menu {
    display: none;
  }

  .hero-map,
  .split {
    grid-template-columns: 1fr;
  }

  .quick-strip,
  .room-grid,
  .timeline-book,
  .city-grid,
  .faq-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .availability-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .facility-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .wrap {
    padding: 14px 12px 96px;
  }

  .nav-actions .btn.ghost {
    display: none;
  }

  .brand-text span {
    display: none;
  }

  .map-card {
    min-height: 610px;
    border-radius: 28px;
  }

  .map-card.has-real-map {
    min-height: 0;
  }

  .map-title h1 {
    font-size: 25px;
  }

  .map-title p {
    display: none;
  }

  .map-toolbar {
    top: 12px;
    right: 12px;
    left: 12px;
  }

  .hotspot {
    transform: translate(-50%, -50%) scale(.82);
  }

  .detail-panel {
    border-radius: 28px;
  }

  .quick-strip,
  .room-grid,
  .timeline-book,
  .city-grid,
  .faq-list,
  .mini-form {
    grid-template-columns: 1fr;
  }

  .availability-board {
    padding: 12px;
  }

  .availability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .availability-day {
    border-radius: 16px;
    padding: 10px;
  }

  .availability-day strong {
    font-size: 24px;
  }

  .room-stock {
    font-size: 10px;
  }

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

  .section-title {
    display: block;
  }

  .section-title h2 {
    font-size: 25px;
  }

  .span-2 {
    grid-column: span 1;
  }

  .floating-contact {
    right: 10px;
    left: 10px;
    overflow: auto;
    transform: none;
  }

  .floating-contact a {
    flex: 1;
    padding: 10px 8px;
  }
}
/* R108_BBB_MOBILE_WIDTH_96_V142 */
@media (max-width: 700px) {
  body .wrap {
    width: 96%;
    max-width: none;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
  }
}
