:root {
  color-scheme: light;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  --bg: #fdfaf7;
  --card: #ffffff;
  --ink: #1c1c1c;
  --muted: #5b5b5b;
  --accent: #d1495b;
  --border: rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #fdfaf7 0%, #f3efea 65%, #ece3de 100%);
  color: var(--ink);
}

.page-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0rem;
}

/* Hero banner with background photo and translucent card */
.hero {
  position: relative;
  padding: clamp(1.5rem, 2vw, 2.5rem);
  margin-bottom: 2rem;
  border-radius: 22px;
  overflow: hidden;
  background-image: linear-gradient(
      180deg,
      rgba(5, 5, 5, 0.35) 0%,
      rgba(5, 5, 5, 0.65) 50%,
      rgba(5, 5, 5, 0.85) 100%
    ),
    url("photos/1368839683.webp");
  background-size: cover;
  background-position: center 35%;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.hero-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 24px;
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: var(--ink);
}

.hero-card .meta {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
}

.hero-title-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-title-row h1 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
}

.price-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.hero-metrics {
  margin-top: 1rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.hero-metrics article {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  padding: 0.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 84px;
  flex: 1;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-metrics article img {
  width: 82px;
  height: 82px;
  margin-bottom: 0.3rem;
  display: block;
}

.hero-metrics article p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero-metrics article span {
  font-weight: 600;
  margin-top: 0.15rem;
}

.hero-metrics article .plot-info {
  margin-top: 0.35rem;
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-metrics article.metric-plot {
  position: relative;
}

.metric-plot .info-badge {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  background: #1f8b49;
}

.metric-plot .plot-tooltip {
  top: 2.8rem;
  right: 0.4rem;
  left: auto;
  transform: translate(0, 0.5rem);
}

.info-badge {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.plot-link {
  font-size: 0.65rem;
  text-align: center;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  line-height: 1.2;
  display: block;
  width: 100%;
}

.plot-tooltip {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  font-size: 0.7rem;
  line-height: 1.3;
  color: var(--ink);
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0.5rem);
  white-space: nowrap;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
  z-index: 2;
}

.plot-tooltip.visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.price {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.features {
  margin: 0;
  font-weight: 500;
  color: var(--muted);
}

.description {
  margin: 0;
  line-height: 1.6;
  color: var(--text);
}

.price-note {
  margin: 0.4rem 0 0;
  font-size: 0.8rem;
  color: #1f8b49;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-cta {
  display: flex;
  justify-content: center;
}

.hero-cta a {
  width: 100%;
  text-align: center;
}

.site-header {
  
  top: 0;
  z-index: 10;
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.site-header__brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.site-header__logo {
  font-weight: 700;
}

.site-header__tagline {
  font-size: 0.85rem;
  color: var(--muted);
}

.site-header__lang {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
}

.info-ribbon {
  position: fixed;
  bottom: 3.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  border-radius: 1.25rem;
  padding: 0.4rem 0.75rem 0.8rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 720px) {
  .hero{
    margin-left: -24px;
    margin-right: -24px;
    /* margin: -24px; */
    padding-top: 300px;
  }
  .info-ribbon {
    left: 0;
    right: 0;
    transform: none;
    border-radius: 0;
    padding: 0.4rem 0.75rem;
    width: 100%;
    justify-content: space-between;
    bottom: 2.39rem;
  }

  .info-ribbon__avatar {
    width: 48px;
    height: 48px;
  }

  .info-ribbon__button {
    margin-right: 0.5rem;
  }
}

.info-ribbon.visible {
  opacity: 1;
  pointer-events: auto;
}

.info-ribbon__avatar {
  width: 60px;
  height: 60px;
  position: relative;
  overflow: visible;
}

.info-ribbon__avatar img {
    width: 100%;
    margin-top: -41px;
    height: 188%;
    object-fit: cover;
    display: block;
    position: relative;
    border-radius: 0.5rem;
    margin-bottom: -12px;
}
.info-ribbon__body {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
}

.info-ribbon__name {
  margin: 0;
  font-weight: 600;
}

.info-ribbon__tagline {
  font-size: 0.75rem;
  opacity: 0.8;
}

.info-ribbon__button {
  margin-left: auto;
  border-radius: 999px;
  padding: 0.35rem 1.1rem;
  border: none;
  background: #1db954;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  position: relative;
  animation: ribbonPulse 2.5s ease-in-out infinite;
}

.info-ribbon__icon {
  font-size: 1.1rem;
}

.info-ribbon__button-text {
  display: inline-block;
}

@keyframes ribbonPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 0 rgba(29, 185, 84, 0.5);
  }
  50% {
    transform: translateY(-1.5px);
    box-shadow: 0 0 12px 6px rgba(29, 185, 84, 0.25);
  }
}

.language-buttons {
  display: flex;
  gap: 0.4rem;
}

.language-buttons button {
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: transparent;
  padding: 0.35rem 0.85rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-transform: uppercase;
}

.language-buttons button.language-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

@media (min-width: 768px) {
  .hero-card {
    padding: clamp(2rem, 3vw, 3rem);
  }

  .hero-title-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .price-block {
    align-items: flex-end;
    text-align: right;
  }

  .hero-cta {
    justify-content: flex-end;
  }
}

@media (min-width: 1024px) {
  .page-shell {
    padding: 2.5rem;
  }

  .hero {
    padding: clamp(2rem, 4vw, 4rem);
  }
}

main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

	.summary,
	.details,
	.gallery,
	.tour,
	.contact {
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.location {
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.map-wrapper {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.map-wrapper iframe {
  width: 100%;
  min-height: 320px;
  border: none;
}

.summary article h2,
.details header h2,
.gallery header h2,
.tour h2,
.contact h2 {
  margin: 0 0 0.35rem;
}

	.summary article p,
	.details header p,
	.gallery header p,
	.tour p,
	.contact p {
  margin: 0;
  color: var(--muted);
}

.additional-plot {
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 1.75rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.additional-plot__content {
  flex: 1 1 320px;
}

.additional-plot__content h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
}

.additional-plot__content p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.additional-plot__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.summary ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.summary .stats .label {
  font-weight: 600;
  display: block;
  color: #2c2c2c;
}

.detail-grid {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.detail-grid article {
  background: #fff8f4;
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid rgba(209, 73, 91, 0.2);
}

.detail-grid h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.condition-note {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.95rem;
}

	.attractions {
  margin-top: 1.5rem;
      padding: 25px;
}

.attractions header h2 {
  margin-bottom: 0.35rem;
}

.attractions-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.attractions-grid article {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  display: flex;
  flex-direction: column;
}

.attractions-grid figure {
  margin: 0;
  height: 140px;
  overflow: hidden;
}

.attractions-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.attractions-grid h3 {
  margin: 1rem;
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.attractions-grid p {
  margin: 0 1rem;
  color: var(--muted);
  line-height: 1.5;
}

.attractions-grid ul {
  margin: 0.5rem 1rem 1rem;
  padding-left: 1rem;
  color: var(--muted);
  line-height: 1.4;
}

.gallery header {
  margin-bottom: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(0.75rem, 1vw, 1.25rem);
}

.gallery-grid figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.gallery-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
  overflow: hidden;
}

.gallery-overlay.visible {
  visibility: visible;
  opacity: 1;
}

.gallery-overlay img {
  max-width: 90vw;
  max-height: 75vh;
  width: auto;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.overlay-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  width: min(1200px, 92vw);
}

.overlay-hero img {
  width: 100%;
  height: min(80vh, 75vw);
  max-height: 85vh;
  object-fit: contain;
  border-radius: 18px;
}

.overlay-fullscreen {
  position: absolute;
  right: 1rem;
  top: 1rem;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.overlay-fullscreen:hover {
  background: rgba(0, 0, 0, 0.8);
}
.gallery-overlay p {
  color: #f7f5f2;
  margin: 0;
  font-size: 1rem;
}

.overlay-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  flex-wrap: wrap;
}

.overlay-close,
.overlay-nav {
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: 999px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
}

.overlay-close {
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
}

.overlay-nav.prev {
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.overlay-nav.next {
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.overlay-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.tour {
  display: grid;
  gap: 1rem;
}

.tour iframe {
  width: 100%;
  min-height: 420px;
  border: none;
  border-radius: 14px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tour-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-start;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.agent-capsule {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: linear-gradient(145deg, #fff3f0, #ffeef4);
  border: 1px solid rgba(209, 73, 91, 0.4);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  box-shadow: 0 12px 24px rgba(209, 73, 91, 0.2);
}

.agent-capsule figure {
  margin: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.agent-capsule img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.agent-name {
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
}

.agent-role {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-cta.phone-pill {
  background: #000;
  color: #fff;
  border-radius: 999px;
  padding: 0.45rem 1rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.phone-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.phone-modal.visible {
  display: flex;
}

.phone-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.phone-modal__content {
  position: relative;
  background: var(--card);
  border-radius: 18px;
  padding: 2rem;
  width: min(440px, 92vw);
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.phone-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
}

.phone-modal__title {
  margin: 0 0 0.5rem;
  font-weight: 600;
  font-size: 1.2rem;
}

.phone-modal__number {
  margin: 0 0 1rem;
  font-size: clamp(1.2rem, 4.8vw, 2rem);
  letter-spacing: 0.03em;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

.phone-modal__content .pill {
  width: 100%;
}

.audio-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #1db954, #3ebd5a, #1db954);
  padding: 0.55rem clamp(1rem, 3vw, 2rem);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.25);
  z-index: 999;
}

.audio-player button {
  border-radius: 999px;
  border: none;
  background: #000;
  color: #fff;
  padding: 0.35rem 1rem;
  font-weight: 600;
  cursor: pointer;
}

.audio-player input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
}

.audio-player input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.audio-player input[type="range"]::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.6);
}

body::after {
  content: "";
  display: block;
  height: 3.5rem;
}

.contact-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.contact button {
  cursor: pointer;
  border-radius: 999px;
  border: none;
  padding: 0.65rem 1.5rem;
  background: var(--accent);
  color: white;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.contact button:hover {
  transform: translateY(-2px);
}

footer {
  margin-top: 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.chat-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 260px;
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 1rem;
  transform: translateY(80%);
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  z-index: 12;
}

.chat-widget.visible {
  transform: translateY(0);
  opacity: 1;
}

.chat-widget header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.chat-widget button {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
}

.chat-widget p {
  margin: 0 0 0.8rem;
  color: var(--muted);
}

.chat-widget #chatEmail {
  width: 100%;
  background: #1c7adb;
  border-radius: 12px;
  border: none;
  color: white;
  padding: 0.65rem;
  cursor: pointer;
  font-weight: 600;
}

.chat-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: #1c7adb;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(28, 122, 219, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11;
}

@media (max-width: 720px) {
  .contact-actions {
    flex-direction: column;
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}
