:root {
  /* Deep space navy + high-altitude winter sky blue (FL510 clear sky / edge of space) */
  --charcoal: #142033;
  --charcoal-dark: #050d1a;
  --yellow: #2b6aa8;
  --yellow-deep: #1f5386;
  --bg: #f2f5f8;
  --panel: #ffffff;
  --muted: #5a6a78;
  --line: #d0d8e0;
  --price: #b42318;
  --link: #2b6aa8;
  --on-accent: #ffffff;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  color: var(--charcoal);
  background: var(--bg);
  font-size: 14px;
  line-height: 1.45;
}
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
.util {
  background: var(--yellow);
  color: var(--on-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.util-inner {
  width: min(1170px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar { background: var(--charcoal); color: #fff; }
.topbar-inner {
  width: min(1170px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 18px 0 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-end;
}
.brand {
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none !important;
}
.brand span { color: var(--yellow); }
.brand:hover { text-decoration: none !important; }
.tagline { margin-top: 4px; font-size: 13px; opacity: 0.85; }
.contact { text-align: right; font-size: 14px; font-weight: 600; }
.contact a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.wrap { width: min(1170px, calc(100% - 2rem)); margin: 0 auto; padding: 20px 0 36px; }
.page-title {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 4px;
  color: var(--charcoal-dark);
}
.page-sub { color: var(--muted); margin: 0 0 18px; }
.intro {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 4px solid var(--yellow);
  padding: 16px 18px;
  margin: 0 0 22px;
}
.intro p { margin: 0 0 10px; }
.intro p:last-child { margin-bottom: 0; }
.listing {
  background: var(--panel);
  border: 1px solid var(--line);
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: 1fr 380px;
}
.listing-main { padding: 18px 20px 20px; }
.listing-side {
  border-left: 1px solid var(--line);
  background: #fafafa;
  display: flex;
  flex-direction: column;
}
.photo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  background: #ddd;
}
.mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  background: #ddd;
  height: 280px;
}
.mosaic-hero {
  grid-row: 1 / span 2;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  border: 0;
  padding: 0;
  background: #ccc;
}
.mosaic-hero img,
.mosaic-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.mosaic-thumbs {
  grid-row: 1 / span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 3px;
  min-height: 0;
}
.mosaic-thumb {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  border: 0;
  padding: 0;
  background: #ccc;
  min-height: 0;
}
.mosaic-thumb:hover img,
.mosaic-hero:hover img { transform: scale(1.03); }
.mosaic-thumb img,
.mosaic-hero img { transition: transform 0.2s ease; }
.mosaic-hint {
  position: absolute;
  right: 6px;
  bottom: 6px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 6px;
  border-radius: 3px;
  pointer-events: none;
}
.side-panel { padding: 14px 16px 18px; }
.price {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--price);
  margin: 0 0 10px;
}
.price a { color: var(--price); }
.title {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 8px;
  line-height: 1.25;
  border-bottom: 3px solid var(--yellow);
  padding-bottom: 8px;
}
.title a { color: var(--charcoal-dark); }
.title a:hover { color: var(--link); }
.meta { color: var(--muted); font-size: 13px; margin-bottom: 10px; }
.blurb { margin: 0 0 12px; }
.specs {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 14px;
}
.specs tr:nth-child(odd) { background: #f7f7f7; }
.specs th, .specs td {
  text-align: left;
  padding: 7px 10px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.specs th {
  width: 32%;
  color: var(--muted);
  font-weight: 600;
}
.btn-row { display: flex; flex-wrap: wrap; gap: 8px; }
.btn {
  display: inline-block;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 10px 14px;
  border-radius: 4px;
}
.btn-yellow {
  background: var(--yellow);
  color: var(--on-accent) !important;
}
.btn-yellow:hover { background: var(--yellow-deep); }
.btn-dark {
  background: var(--charcoal);
  color: #fff !important;
}
.btn-dark:hover { background: var(--charcoal-dark); }
button.btn { border: 0; cursor: pointer; font-family: Montserrat, Arial, sans-serif; }
.note { color: var(--muted); font-size: 13px; margin-top: 8px; }
footer {
  background: var(--charcoal-dark);
  color: #c9cdcf;
  padding: 18px 0 28px;
  font-size: 13px;
}
footer a { color: var(--yellow); }
.btn-contact {
  display: inline-block;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 10px 16px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  background: var(--yellow);
  color: var(--on-accent) !important;
}
.btn-contact:hover { background: var(--yellow-deep); }
.topbar-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.lang-switch .lang-current {
  color: #fff;
}
.lang-switch .lang-sep {
  opacity: 0.35;
  font-weight: 500;
}
.lang-switch a.lang-alt {
  color: rgba(255,255,255,0.55);
  text-decoration: none !important;
}
.lang-switch a.lang-alt:hover {
  color: #fff;
}
.note-actions { margin-top: 12px; }
.breadcrumbs {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 14px;
}
.breadcrumbs a { color: var(--link); }
.faq {
  background: var(--panel);
  border: 1px solid var(--line);
  margin: 28px 0 12px;
  padding: 18px 20px 8px;
}
.faq h2 {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 12px;
  border-bottom: 3px solid var(--yellow);
  padding-bottom: 8px;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}
.faq summary {
  font-weight: 700;
  cursor: pointer;
  color: var(--charcoal-dark);
}
.faq details p { margin: 8px 0 4px; color: var(--muted); }
.related {
  margin: 22px 0 0;
  padding: 16px 18px;
  background: var(--panel);
  border: 1px solid var(--line);
}
.related h2 {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.related ul { margin: 0; padding-left: 18px; }
.related li { margin: 4px 0; }
.nav-listings {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}
.nav-listings a {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none !important;
  color: var(--charcoal-dark);
}
.nav-listings a:hover { border-color: var(--yellow-deep); background: var(--yellow); color: var(--on-accent); }
/* Contact modal */
.contact-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}
.contact-modal.is-open { display: flex; }
.contact-panel {
  background: #fff;
  border-radius: 6px;
  width: min(420px, 100%);
  padding: 24px 22px 22px;
  position: relative;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  color: var(--charcoal);
}
.contact-panel h2 {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 6px;
  border-bottom: 3px solid var(--yellow);
  padding-bottom: 8px;
}
.contact-panel .lead {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 16px;
}
.contact-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--charcoal-dark);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}
.cfield { margin-bottom: 12px; }
.cfield label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
  color: var(--muted);
}
.cfield input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  color: var(--charcoal);
}
.cfield input:focus {
  outline: 2px solid var(--yellow);
  border-color: var(--yellow-deep);
}
.cerror {
  color: var(--price);
  font-size: 12px;
  margin: 0 0 10px;
  display: none;
}
.cerror.is-visible { display: block; }
.contact-card {
  display: none;
  background: #f7f7f7;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 16px 14px;
  margin-top: 4px;
}
.contact-card.is-visible { display: block; }
.contact-card .cname {
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.contact-card a { color: var(--link); font-weight: 600; }
.contact-card .cline { margin: 4px 0; font-size: 14px; }
.hp-field { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.form-done-msg {
  display: none;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 10px;
}
.form-done-msg.is-visible { display: block; }
/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
  cursor: zoom-out;
}
.lightbox.is-open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: min(1100px, 96vw);
  max-height: 92vh;
  cursor: default;
}
.lightbox-inner img {
  display: block;
  max-width: 100%;
  max-height: 88vh;
  width: auto;
  height: auto;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  background: #111;
}
.lightbox-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: var(--yellow);
  color: var(--charcoal-dark);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.lightbox-caption {
  color: #eee;
  text-align: center;
  margin-top: 10px;
  font-size: 13px;
}
@media (max-width: 860px) {
  .listing { grid-template-columns: 1fr; }
  .listing-side { border-left: none; border-top: 1px solid var(--line); }
  .contact { text-align: left; }
  .photo img { height: 220px; }
  .mosaic { height: 240px; }
}

/* WhatsApp CTAs + mobile tap targets */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 10px 16px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  background: #128c7e;
  color: #fff !important;
  box-sizing: border-box;
}
.btn-whatsapp:hover { background: #075e54; color: #fff !important; }
.btn-whatsapp-card {
  width: 100%;
  margin-top: 8px;
}
.contact-card .wa-line { margin-top: 10px; }
.btn-contact,
.btn,
.contact-panel .btn,
#c-submit {
  min-height: 44px;
}
.contact-close {
  min-width: 44px;
  min-height: 44px;
  width: 44px;
  height: 44px;
}
.cfield input {
  min-height: 44px;
  font-size: 16px; /* avoid iOS zoom */
}
.prose-page {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 4px solid var(--yellow);
  padding: 20px 22px 24px;
  margin: 0 0 22px;
}
.prose-page h1 {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--charcoal-dark);
}
.prose-page h2 {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 20px 0 8px;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 6px;
}
.prose-page p { margin: 0 0 12px; color: var(--charcoal); }
.prose-page ul { margin: 0 0 12px; padding-left: 1.2rem; color: var(--charcoal); }
.prose-page li { margin-bottom: 6px; }
.prose-page .muted { color: var(--muted); font-size: 13px; }
@media (max-width: 860px) {
  .topbar-actions {
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
  }
  .btn-whatsapp, .btn-contact {
    flex: 1 1 auto;
  }
}
