@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
  --navy: #304b55;
  --ink: #243943;
  --muted: #71808a;
  --green: #6da866;
  --paper: #f4f5f3;
  --line: rgba(11, 46, 77, 0.14);
  --font-sans: Inter, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--paper); color: var(--ink); font-family: var(--font-sans); -webkit-font-smoothing: antialiased; }
a { color: inherit; }
button, input { font: inherit; }

.property-page { max-width: 1440px; margin: 0 auto; padding: 0 clamp(18px, 4vw, 64px) 90px; }
.property-site-header { display: flex; align-items: center; justify-content: space-between; gap: 32px; min-height: 88px; padding: 0 clamp(24px, 5vw, 76px); border-bottom: 1px solid var(--line); background: #fff; }
.property-site-header .brand { display: inline-flex; align-items: center; width: 164px; flex: 0 0 auto; }
.property-site-header .brand img { display: block; width: 100%; height: auto; background: transparent; }
.property-site-header .main-nav { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 42px); min-height: 44px; padding: 0; background: transparent; }
.property-site-header .main-nav a, .property-site-header .contact-menu summary { color: var(--navy); font-size: 11px; font-weight: 600; letter-spacing: 0.24em; text-decoration: none; white-space: nowrap; }
.property-site-header .main-nav a:first-child { position: relative; }
.property-site-header .main-nav a:first-child::after { position: absolute; right: 0; bottom: -14px; left: 0; height: 2px; background: var(--navy); content: ""; }
.property-site-header .contact-menu { position: relative; display: flex; align-items: center; }
.property-site-header .contact-menu summary { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; list-style: none; }
.property-site-header .contact-menu summary::-webkit-details-marker { display: none; }
.property-site-header .contact-menu summary span { font-size: 16px; letter-spacing: 0; line-height: 0.7; transition: transform 160ms ease; }
.property-site-header .contact-menu[open] summary span { transform: rotate(180deg); }
.property-site-header .contact-menu-panel { position: absolute; top: calc(100% + 16px); right: 0; z-index: 10; display: grid; min-width: 232px; padding: 8px; border: 1px solid rgba(255,255,255,0.36); border-radius: 10px; background: rgba(11,46,77,0.94); box-shadow: 0 16px 36px rgba(0,20,36,0.22); backdrop-filter: blur(14px); }
.property-site-header .contact-menu-panel a { display: flex; flex-direction: column; gap: 5px; padding: 13px 14px; border-radius: 6px; color: #fff; letter-spacing: 0; text-shadow: none; }
.property-site-header .contact-menu-panel a:hover, .property-site-header .contact-menu-panel a:focus-visible { background: rgba(255,255,255,0.1); }
.property-site-header .contact-menu-panel a + a { border-top: 1px solid rgba(255,255,255,0.16); border-radius: 0 0 6px 6px; }
.property-site-header .contact-menu-panel a span { color: rgba(255,255,255,0.64); font-size: 9px; font-weight: 700; letter-spacing: 0.18em; }
.property-site-header .contact-menu-panel a strong { font-size: 14px; font-weight: 500; letter-spacing: 0.01em; }

.property-contact { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }
.property-contact a { display: grid; place-items: center; width: 32px; height: 32px; color: var(--navy); text-decoration: none; transition: color 160ms ease, transform 160ms ease; }
.property-contact a:hover, .property-contact a:focus-visible { color: var(--green); transform: translateY(-1px); }
.property-contact a:focus-visible { outline: 2px solid var(--navy); outline-offset: 5px; }

.property-gallery { display: grid; grid-template-columns: 1.47fr 1fr; gap: 10px; margin-top: 24px; height: min(54vw, 620px); min-height: 500px; overflow: hidden; }
.property-gallery.is-single { grid-template-columns: 1fr; }
.property-gallery.is-single .gallery-secondary { display: none; }
.gallery-main, .gallery-secondary button { position: relative; overflow: hidden; border: 0; border-radius: 12px; background: #dfe5e2; }
.gallery-main, .gallery-secondary { min-height: 0; }
.gallery-main img, .gallery-secondary img { display: block; width: 100%; height: 100%; object-fit: cover; }
.gallery-main img { transition: opacity 180ms ease; }
.gallery-count { position: absolute; right: 20px; bottom: 18px; padding: 8px 10px; border-radius: 999px; background: rgba(255,255,255,0.86); color: var(--navy); font-size: 10px; font-weight: 700; letter-spacing: 0.13em; }
.gallery-arrow { position: absolute; z-index: 1; top: 50%; display: grid; width: 42px; height: 42px; place-items: center; transform: translateY(-50%); border: 1px solid rgba(255,255,255,0.7); border-radius: 50%; background: rgba(255,255,255,0.82); color: var(--navy); cursor: pointer; font-size: 22px; line-height: 1; opacity: 0; transition: opacity 160ms ease, background 160ms ease, transform 160ms ease; }
.gallery-main:hover .gallery-arrow, .gallery-arrow:focus-visible { opacity: 1; }
.gallery-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.04); }
.gallery-arrow-prev { left: 18px; }
.gallery-arrow-next { right: 18px; }
.gallery-secondary { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: calc((100% - 30px) / 4); gap: 10px; height: 100%; overflow-x: hidden; overflow-y: auto; scrollbar-width: thin; scrollbar-color: rgba(11,46,77,.45) transparent; }
.gallery-secondary button { min-height: 0; padding: 0; cursor: pointer; }
.gallery-secondary button::after { position: absolute; inset: 0; border: 2px solid transparent; border-radius: 12px; content: ""; transition: border-color 180ms ease, background 180ms ease; }
.gallery-secondary button:hover::after, .gallery-secondary button.is-active::after { border-color: rgba(255,255,255,0.9); background: rgba(11,46,77,0.1); }

.property-intro { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 50px; min-height: 265px; padding: clamp(62px, 7vw, 92px) 0 58px; border-bottom: 1px solid var(--line); background: var(--paper); }
.property-type, .property-code, .section-kicker { margin: 0; color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: 0.19em; }
.property-type { color: var(--ink); }
.property-intro h1 { max-width: 760px; margin: 16px 0 12px; color: var(--navy); font-size: clamp(48px, 7vw, 96px); font-weight: 500; letter-spacing: -0.075em; line-height: 0.91; }
.property-location { margin: 0; color: var(--muted); font-size: 17px; letter-spacing: 0; }
.property-intro-side { display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; }
.property-code { margin-bottom: 14px; color: var(--muted); font-size: 10px; }
.property-price { margin: 0 0 24px; color: var(--ink); font-size: 28px; font-weight: 500; letter-spacing: -0.035em; }
.primary-action { display: inline-flex; align-items: center; gap: 18px; padding: 15px 0 10px; border-bottom: 1px solid var(--navy); color: var(--navy); font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-decoration: none; }
.primary-action span { color: var(--green); font-size: 18px; }

.property-details { display: grid; grid-template-columns: minmax(0, 1fr) 370px; gap: clamp(48px, 9vw, 140px); padding-top: 64px; }
.property-story { max-width: 760px; }
.property-story h2 { max-width: 620px; margin: 16px 0 22px; color: var(--navy); font-size: clamp(30px, 4vw, 52px); font-weight: 500; letter-spacing: -0.06em; line-height: 0.98; }
.property-story > p:not(.section-kicker) { max-width: 680px; margin: 0; color: #53616b; font-size: 17px; line-height: 1.72; }
.property-stats { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); max-width: 760px; margin-top: 48px; border-top: 1px solid var(--line); }
.stat { display: flex; align-items: flex-start; gap: 10px; min-height: 96px; padding: 18px 14px 18px 0; border-right: 0; color: var(--navy); }
.stat:last-child { padding-right: 0; }
.stat-icon { display: inline-flex; width: 24px; height: 24px; flex: 0 0 24px; align-items: center; justify-content: center; margin-top: 2px; color: var(--green); }
.stat-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.45; }
.stat-copy { display: grid; gap: 5px; min-width: 0; }
.stat-copy strong { color: var(--navy); font-size: 23px; font-weight: 500; letter-spacing: -0.05em; line-height: 1; }
.stat-copy span { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; line-height: 1.35; }

.property-features { max-width: 660px; margin-top: 72px; }
.features-heading h3 { max-width: 520px; margin: 14px 0 24px; color: var(--navy); font-size: clamp(26px, 3vw, 42px); font-weight: 500; letter-spacing: -0.06em; line-height: 1; }
.feature-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.feature-list li { display: flex; align-items: center; gap: 12px; min-height: 58px; padding: 12px 18px 12px 0; border-bottom: 1px solid var(--line); color: var(--navy); font-size: 15px; }
.feature-list li:nth-child(odd) { border-right: 1px solid var(--line); }
.feature-list li:nth-child(even) { padding-left: 18px; }
.feature-check { display: inline-flex; width: 22px; height: 22px; flex: 0 0 22px; align-items: center; justify-content: center; border: 1px solid rgba(109,168,102,0.5); border-radius: 50%; color: var(--green); font-size: 13px; font-weight: 700; }

.property-map-block { margin-top: 86px; padding-top: 1px; }
.map-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 22px; }
.map-heading h3 { margin: 14px 0 0; color: var(--navy); font-size: clamp(26px, 3vw, 43px); font-weight: 500; letter-spacing: -0.06em; line-height: 1; }
.map-heading a { display: inline-flex; align-items: center; gap: 10px; padding-bottom: 8px; border-bottom: 1px solid var(--navy); color: var(--navy); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-decoration: none; white-space: nowrap; }
.map-heading a span { color: var(--green); font-size: 16px; }
.map-frame { position: relative; min-height: 310px; overflow: hidden; border-radius: 12px; background: #dce5e2; }
.map-frame iframe { display: block; width: 100%; height: 310px; border: 0; filter: saturate(0.7) contrast(0.94); }
.map-note { position: absolute; right: 16px; bottom: 14px; padding: 8px 10px; background: rgba(255,255,255,0.9); color: var(--navy); font-size: 9px; font-weight: 700; letter-spacing: 0.11em; }

.nearby-section { margin-top: 48px; padding-top: 44px; border-top: 1px solid var(--line); }
.nearby-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.nearby-heading h3 { max-width: 420px; margin: 14px 0 0; color: var(--navy); font-size: clamp(26px, 3vw, 42px); font-weight: 500; letter-spacing: -0.06em; line-height: 1; }
.nearby-note { max-width: 240px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.nearby-categories { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 18px; }
.nearby-category { min-height: 34px; padding: 0 13px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--navy); cursor: pointer; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; }
.nearby-category.is-active, .nearby-category:hover, .nearby-category:focus-visible { border-color: var(--navy); background: var(--navy); color: #fff; }
.nearby-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.nearby-card { display: grid; grid-template-columns: 30px minmax(0, 1fr) auto; gap: 14px; min-height: 150px; padding: 22px 20px 22px 0; border-bottom: 1px solid var(--line); }
.nearby-card:nth-child(even) { padding-right: 0; padding-left: 20px; border-left: 1px solid var(--line); }
.nearby-card-icon { display: flex; align-items: flex-start; justify-content: flex-start; padding-top: 2px; color: var(--green); }
.nearby-card-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.45; }
.nearby-card-logo { display: flex; width: 30px; height: 30px; align-items: center; justify-content: center; overflow: hidden; border: 1px solid var(--line); border-radius: 7px; background: #fff; }
.nearby-card-logo img { display: block; width: 100%; height: 100%; object-fit: contain; }
.nearby-card-copy { min-width: 0; }
.nearby-card-copy p { margin: 0 0 7px; color: var(--green); font-size: 9px; font-weight: 700; letter-spacing: 0.16em; }
.nearby-card-copy h4 { margin: 0 0 7px; color: var(--navy); font-size: 17px; font-weight: 600; letter-spacing: -0.025em; line-height: 1.15; }
.nearby-card-copy span, .nearby-card-copy small { display: block; color: var(--muted); font-size: 12px; line-height: 1.45; }
.nearby-card-copy small { margin-top: 5px; font-size: 11px; }
.nearby-card-action { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; gap: 18px; min-width: 92px; text-align: right; }
.nearby-card-action strong { color: var(--navy); font-size: 11px; font-weight: 700; line-height: 1.35; }
.nearby-card-action a { padding-bottom: 5px; border-bottom: 1px solid var(--navy); color: var(--navy); font-size: 9px; font-weight: 700; letter-spacing: 0.13em; text-decoration: none; }
.nearby-card-action a:hover, .nearby-card-action a:focus-visible { color: var(--green); border-color: var(--green); }

.inquiry-card { align-self: start; padding: 30px; border: 1px solid rgba(11,46,77,0.1); border-radius: 12px; background: #fff; box-shadow: 0 18px 45px rgba(15, 35, 48, 0.07); }
.inquiry-card h2 { margin: 14px 0 12px; color: var(--navy); font-size: 29px; font-weight: 500; letter-spacing: -0.055em; line-height: 1; }
.inquiry-card > p:not(.section-kicker):not(.form-feedback) { margin: 0 0 26px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.inquiry-card form { display: grid; gap: 15px; }
.inquiry-card label span { display: block; margin-bottom: 7px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: 0.13em; }
.inquiry-card input { width: 100%; min-height: 43px; padding: 0 12px; border: 1px solid var(--line); border-radius: 7px; outline: 0; background: var(--paper); color: var(--navy); font-size: 13px; }
.inquiry-card input:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(11,46,77,0.08); }
.inquiry-card input::placeholder { color: #9aa4a9; }
.inquiry-card button { min-height: 46px; margin-top: 5px; border: 0; border-radius: 7px; background: var(--navy); color: #fff; cursor: pointer; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; }
.inquiry-card button:hover { background: #496873; }
.form-feedback { min-height: 18px; margin: 14px 0 0; color: var(--green); font-size: 11px; font-weight: 600; }

@media (max-width: 820px) {
  .property-site-header .main-nav { gap: 16px; }
  .property-site-header .main-nav a, .property-site-header .contact-menu summary { font-size: 10px; }
  .property-site-header .brand { width: 154px; }
  .property-contact { gap: 8px; }
  .property-gallery { grid-template-columns: 1fr; height: auto; min-height: 0; }
  .gallery-main { height: 58vw; min-height: 280px; }
  .gallery-secondary { grid-auto-flow: column; grid-template-columns: none; grid-template-rows: 1fr; grid-auto-columns: min(24vw, 190px); height: 150px; overflow-x: auto; overflow-y: hidden; }
  .property-intro, .property-details { grid-template-columns: 1fr; gap: 36px; }
  .property-intro-side { align-items: flex-start; }
  .property-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(n+3) { border-top: 0; }
  .stat:nth-child(3) { padding-left: 0; }
  .stat:nth-child(4) { padding-right: 0; }
  .inquiry-card { max-width: 520px; }
  .property-map-block { margin-top: 64px; }
  .property-features { margin-top: 58px; }
  .nearby-list { grid-template-columns: 1fr; }
  .nearby-card, .nearby-card:nth-child(even) { padding: 20px 0; border-left: 0; }
}

@media (max-width: 520px) {
  .property-page { padding: 0 16px 60px; }
  .property-site-header { min-height: 76px; }
  .property-site-header .brand { width: 142px; }
  .property-site-header .main-nav { display: none; }
  .property-gallery { margin-top: 16px; }
  .gallery-main { height: 70vw; }
  .gallery-secondary { grid-auto-columns: 42vw; height: 100px; gap: 6px; }
  .gallery-main, .gallery-secondary button { border-radius: 8px; }
  .property-intro { padding: 48px 0 40px; }
  .property-intro h1 { font-size: 52px; }
  .property-details { padding-top: 48px; }
  .inquiry-card { padding: 22px; }
  .map-heading { display: block; }
  .map-heading a { margin-top: 20px; }
  .nearby-heading { display: block; }
  .nearby-note { margin-top: 16px; }
  .nearby-card { grid-template-columns: 28px minmax(0, 1fr); gap: 12px; }
  .nearby-card-action { grid-column: 2; align-items: flex-start; flex-direction: row; justify-content: space-between; min-width: 0; text-align: left; }
  .property-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat { min-height: 92px; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(n+3) { border-top: 0; }
  .stat:nth-child(3) { padding-left: 0; }
  .stat:nth-child(4) { padding-right: 0; }
  .feature-list { grid-template-columns: 1fr; }
  .feature-list li:nth-child(odd) { border-right: 0; }
  .feature-list li:nth-child(even) { padding-left: 0; }
  .gallery-arrow { opacity: 1; width: 36px; height: 36px; }
}

/* Mobile navigation opens as a full-screen layer on every property page. */
@media (max-width: 820px) {
  body.mobile-navigation-open { overflow: hidden; }
  body.mobile-navigation-open .property-site-header { z-index: 1002; }

  .property-site-header .main-nav,
  .property-pilot-clean .property-site-header .main-nav {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: none;
    width: 100%;
    max-width: none;
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    min-width: 0;
    min-height: 100dvh;
    padding: 104px 28px 38px;
    border: 0;
    background: #fff;
    box-shadow: 0 18px 48px rgba(5, 23, 40, .18);
  }

  body.mobile-navigation-open .property-site-header .main-nav {
    display: flex;
  }

  .property-site-header .main-nav a,
  .property-pilot-clean .property-site-header .main-nav a {
    display: flex;
    min-height: 62px;
    align-items: center;
    padding: 0 4px;
    border-bottom: 1px solid rgba(11, 46, 77, .14);
    color: var(--navy);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: .08em;
  }

  .property-site-header .property-mobile-menu,
  .property-pilot-clean .property-mobile-menu { position: relative; z-index: 1001; }
}

/* Property experience layer */
.gallery-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin: 24px 0 10px; }
.property-gallery > .gallery-toolbar { grid-column: 1 / -1; }
.gallery-categories, .gallery-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.gallery-category, .gallery-actions button { min-height: 32px; padding: 0 11px; border: 1px solid var(--line); background: transparent; color: var(--navy); cursor: pointer; font-size: 9px; font-weight: 700; letter-spacing: .11em; }
.gallery-category.is-active, .gallery-category:hover, .gallery-actions button:hover, .gallery-actions button:focus-visible { border-color: var(--navy); background: var(--navy); color: #fff; }
.gallery-actions button:first-child.is-active { background: var(--green); border-color: var(--green); }
.gallery-main { cursor: zoom-in; }
.property-intro-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.whatsapp-text-action { padding: 15px 0 10px; border-bottom: 1px solid var(--green); color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .15em; text-decoration: none; }
.inquiry-card { position: sticky; top: 24px; }
.visit-fields { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .75fr); gap: 10px; }
.inquiry-card select { width: 100%; min-height: 43px; padding: 0 10px; border: 1px solid var(--line); border-radius: 7px; outline: 0; background: var(--paper); color: var(--navy); font-size: 12px; }
.inquiry-card select:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(11,46,77,.08); }
.form-feedback a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.gallery-lightbox { width: min(1180px, calc(100vw - 40px)); max-width: none; padding: 0; border: 0; background: #071b28; color: #fff; box-shadow: 0 30px 100px rgba(0,0,0,.45); }
.gallery-lightbox::backdrop { background: rgba(3,16,24,.82); backdrop-filter: blur(8px); }
.gallery-lightbox figure { position: relative; display: grid; min-height: min(82vh, 780px); margin: 0; place-items: center; }
.gallery-lightbox figure img { display: block; width: 100%; height: min(82vh, 780px); object-fit: contain; }
.gallery-lightbox figcaption { position: absolute; right: 24px; bottom: 20px; left: 24px; color: rgba(255,255,255,.78); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-align: center; }
.lightbox-close, .lightbox-arrow { position: absolute; z-index: 2; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: rgba(7,27,40,.7); color: #fff; cursor: pointer; }
.lightbox-close { top: 16px; right: 16px; width: 42px; height: 42px; font-size: 26px; }
.lightbox-arrow { top: 50%; width: 48px; height: 48px; transform: translateY(-50%); font-size: 24px; transition: background-color 160ms ease, transform 160ms ease; }
.lightbox-arrow:hover { background: rgba(255,255,255,.15); transform: translateY(-50%) scale(1.05); }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
@media (max-width: 720px) {
  .gallery-toolbar { align-items: flex-start; flex-direction: column; }
  .gallery-actions { width: 100%; justify-content: space-between; }
  .gallery-actions button { flex: 1; }
  .property-intro-actions { gap: 14px; }
  .inquiry-card { position: static; }
  .visit-fields { grid-template-columns: 1fr; }
  .gallery-lightbox { width: calc(100vw - 16px); }
  .gallery-lightbox figure, .gallery-lightbox figure img { min-height: 70vh; height: 70vh; }
  .lightbox-arrow { width: 38px; height: 38px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  .lightbox-arrow { transition: none; }
}

/* Property feature rail: icon-led details that belong to the property itself. */
.property-features {
  max-width: none;
  margin-top: 76px;
}

.features-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.features-heading h3 {
  max-width: 640px;
  margin-bottom: 28px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  border: 0;
  background: var(--line);
}

.feature-list li,
.feature-list li:nth-child(odd),
.feature-list li:nth-child(even) {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: start;
  gap: 13px;
  min-height: 122px;
  padding: 18px 16px;
  border: 0;
  background: var(--paper);
  color: var(--navy);
  font-size: 13px;
  line-height: 1.35;
}

.feature-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(109, 168, 102, .5);
  border-radius: 50%;
  color: var(--green);
}

.feature-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

@media (max-width: 1100px) {
  .feature-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .feature-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .features-heading { display: block; }
}

@media (max-width: 520px) {
  .property-features { margin-top: 58px; }
  .feature-list { grid-template-columns: 1fr; }
  .feature-list li,
  .feature-list li:nth-child(odd),
  .feature-list li:nth-child(even) { min-height: 82px; padding: 14px; }
}

/* Editorial property view: one full-bleed image followed by a clean information sheet. */
.property-page {
  max-width: none;
  padding: 0 0 90px;
}

.property-gallery {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  margin: 0;
  overflow: visible;
}

.property-gallery > .gallery-toolbar,
.property-gallery > .gallery-secondary {
  display: none;
}

.gallery-main {
  height: min(74vh, 820px);
  min-height: 540px;
  border-radius: 0;
  background: #dfe5e2;
}

.gallery-main img { object-position: center center; }

.gallery-arrow {
  width: 48px;
  height: 48px;
  border-color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.9);
  opacity: .95;
}

.gallery-arrow-prev { left: clamp(18px, 3vw, 48px); }
.gallery-arrow-next { right: clamp(18px, 3vw, 48px); }

.gallery-count {
  top: 24px;
  right: clamp(18px, 4vw, 64px);
  bottom: auto;
  background: rgba(255,255,255,.9);
}

.gallery-dots {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 22px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 50%;
  background: rgba(255,255,255,.42);
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease;
}

.gallery-dot.is-active,
.gallery-dot:hover,
.gallery-dot:focus-visible {
  background: #fff;
  outline: 0;
  transform: scale(1.25);
}

.property-intro,
.property-details {
  max-width: 1320px;
  margin-right: auto;
  margin-left: auto;
  padding-right: clamp(24px, 5vw, 76px);
  padding-left: clamp(24px, 5vw, 76px);
}

.property-intro {
  min-height: 0;
  padding-top: 54px;
  padding-bottom: 48px;
  background: #fff;
}

.property-intro h1 {
  max-width: 820px;
  margin-top: 12px;
  margin-bottom: 8px;
  font-size: clamp(42px, 5.2vw, 78px);
  line-height: .96;
}

.property-location { font-size: 15px; }
.property-intro-side { justify-content: flex-end; }
.property-code { margin-bottom: 10px; }
.property-price { margin-bottom: 18px; font-size: 26px; }

.property-details {
  padding-top: 66px;
  background: #fff;
}

.property-story > .property-copy,
.property-copy {
  max-width: 720px;
  color: #4e5a62;
  font-size: 17px;
  line-height: 1.72;
}

.property-copy p { margin: 0 0 22px; }
.property-copy p:last-child { margin-bottom: 0; }
.property-copy strong { color: var(--ink); font-weight: 700; }

@media (max-width: 820px) {
  .property-intro,
  .property-details { padding-right: 24px; padding-left: 24px; }
  .gallery-main { height: 68vw; min-height: 420px; }
  .property-intro { padding-top: 42px; padding-bottom: 38px; }
  .property-intro h1 { font-size: clamp(38px, 8vw, 60px); }
  .property-details { padding-top: 52px; }
}

@media (max-width: 520px) {
  .property-page { padding-bottom: 60px; }
  .gallery-main { height: 76vw; min-height: 330px; }
  .gallery-arrow { width: 36px; height: 36px; font-size: 18px; }
  .gallery-count { top: 16px; right: 16px; padding: 7px 9px; font-size: 9px; }
  .gallery-dots { bottom: 16px; }
  .gallery-dot { width: 7px; height: 7px; }
  .property-intro,
  .property-details { padding-right: 20px; padding-left: 20px; }
  .property-intro { padding-top: 34px; padding-bottom: 32px; }
  .property-intro h1 { margin-top: 10px; font-size: clamp(34px, 10vw, 48px); }
  .property-location { font-size: 14px; }
  .property-details { padding-top: 42px; }
  .property-story > .property-copy,
  .property-copy { font-size: 16px; line-height: 1.65; }
}

/* Let the Bento composition follow the selected image instead of leaving artificial side bands. */
.property-gallery { overflow: hidden; }
.gallery-bento-main { overflow: hidden; }
.gallery-bento-feature,
.gallery-bento-grid { min-height: 0; }
.gallery-bento-feature { height: 100%; }
.gallery-bento-grid { height: 100%; }

@media (min-width: 821px) {
  .gallery-bento-main.is-portrait {
    grid-template-columns: minmax(280px, calc(min(68vw, 760px) * .5622)) minmax(0, 1fr);
  }

  .gallery-bento-main.is-landscape {
    grid-template-columns: minmax(0, 3.35fr) minmax(250px, 1fr);
    height: auto;
    min-height: 0;
  }

  .gallery-bento-main.is-landscape .gallery-bento-feature {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .gallery-bento-main.is-landscape .gallery-bento-grid {
    height: 100%;
  }
}

/* Match the landing header: one calm white utility bar across every public page. */
.property-site-header,.property-pilot-clean .property-site-header{position:relative;display:grid;grid-template-columns:minmax(0,1fr) auto minmax(0,1fr);min-height:76px;padding:0 clamp(24px,5vw,76px);border-bottom:1px solid rgba(11,46,77,.12);background:#fff}.property-site-header .brand,.property-pilot-clean .property-site-header .brand{grid-column:1;justify-self:start;width:154px;position:static;transform:none}.property-site-header .main-nav,.property-pilot-clean .property-site-header .main-nav{grid-column:2;justify-self:center;margin:0;gap:clamp(20px,2.8vw,42px)}.property-site-header .main-nav a,.property-pilot-clean .property-site-header .main-nav a{font-size:10px;font-weight:600;letter-spacing:.12em}.property-site-header .main-nav a:first-child::after{display:none}.property-contact,.property-pilot-clean .property-contact{grid-column:3;justify-self:end;gap:8px}.property-contact a{width:36px;height:36px}.property-mobile-menu,.property-mobile-search,.property-mobile-share{display:none}@media(max-width:820px){.property-site-header,.property-pilot-clean .property-site-header{display:flex;min-height:68px;padding:0 16px;gap:6px}.property-site-header .brand,.property-pilot-clean .property-site-header .brand{order:1;width:132px;margin-right:auto}.property-site-header .main-nav,.property-pilot-clean .property-site-header .main-nav{position:absolute;top:100%;right:16px;z-index:20;display:none;min-width:230px;padding:8px;background:#fff;border:1px solid var(--line);box-shadow:0 12px 28px rgba(19,45,64,.08)}.mobile-navigation-open .property-site-header .main-nav{display:grid}.property-site-header .main-nav a{padding:12px}.property-contact,.property-pilot-clean .property-contact{display:none}.property-mobile-menu,.property-mobile-search,.property-mobile-share{display:grid;width:34px;height:34px;place-items:center;order:2;border:0;color:var(--navy);background:transparent}.property-mobile-menu{order:4}.property-mobile-search{order:3}.property-mobile-share{order:2}}

/* Neutral, image-bound lightbox: no navy side panels and controls aligned to the actual photo. */
.gallery-lightbox {
  inset: 0;
  display: grid;
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  place-items: center;
  border: 0;
  background: var(--paper);
  color: var(--navy);
  box-shadow: none;
}

.gallery-lightbox::backdrop { background: rgba(3, 16, 24, .82); backdrop-filter: blur(8px); }

.lightbox-stage {
  position: relative;
  display: block;
  width: max-content;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 32px);
}

.gallery-lightbox figure {
  position: relative;
  display: block;
  width: max-content;
  max-width: 100%;
  max-height: 100%;
  min-height: 0;
  margin: 0;
}

.gallery-lightbox figure img {
  display: block;
  width: auto;
  height: auto;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 32px);
  object-fit: contain;
}

.gallery-lightbox figcaption {
  right: 18px;
  bottom: 16px;
  left: 18px;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .5);
}

.lightbox-close,
.lightbox-arrow {
  border-color: rgba(11, 46, 77, .24);
  background: rgba(255, 255, 255, .9);
  color: var(--navy);
}

.lightbox-close { position: fixed; z-index: 4; top: 16px; right: 16px; }
.lightbox-arrow { z-index: 3; }
.lightbox-prev { left: 14px; }
.lightbox-next { right: 14px; }

@media (max-width: 720px) {
  .gallery-lightbox figure img {
    max-width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
  }

  .lightbox-stage { max-width: calc(100vw - 24px); max-height: calc(100vh - 24px); }
  .lightbox-arrow { width: 38px; height: 38px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* Experimental Bento gallery: the selected image leads, the rest becomes an interactive editorial grid. */
.gallery-bento-main {
  display: grid;
  grid-template-columns: minmax(0, 1.72fr) minmax(300px, .88fr);
  gap: 12px;
  height: min(68vw, 760px);
  min-height: 560px;
  padding: 0 clamp(16px, 3vw, 44px);
  background: #fff;
  overflow: visible;
}

.gallery-bento-feature,
.gallery-bento-tile {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 0;
  background: #dfe5e2;
}

.gallery-bento-feature {
  height: 100%;
  border-radius: 24px 4px 24px 4px;
  isolation: isolate;
}

.gallery-bento-feature::after,
.gallery-bento-tile::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 35%;
  background: linear-gradient(180deg, transparent, rgba(5, 30, 49, .48));
  content: '';
  pointer-events: none;
}

.gallery-bento-feature > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 180ms ease, transform 600ms cubic-bezier(.2,.7,.2,1);
}

.gallery-bento-feature:hover > img { transform: scale(1.018); }

.gallery-bento-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
}

.gallery-bento-tile {
  display: block;
  min-height: 0;
  padding: 0;
  border-radius: 4px 18px 4px 18px;
  cursor: pointer;
  text-align: left;
}

.gallery-bento-tile:nth-child(2n) { border-radius: 4px 4px 18px 18px; }

.gallery-bento-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1), filter 300ms ease;
}

.gallery-bento-tile:hover img,
.gallery-bento-tile:focus-visible img { transform: scale(1.06); filter: saturate(1.08); }

.gallery-bento-tile::after { display: none; }

.gallery-bento-tile:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

@media (min-width: 821px) {
  .gallery-bento-feature > img {
    object-fit: contain;
    background: var(--paper);
  }

  .property-intro {
    max-width: none;
    width: 100%;
  }

  .property-intro h1 {
    max-width: 900px;
  }
}

.gallery-bento-feature .gallery-arrow-prev { left: 20px; }
.gallery-bento-feature .gallery-arrow-next { right: 20px; }
.gallery-bento-feature .gallery-count { top: 20px; right: 20px; bottom: auto; }
.gallery-bento-feature .gallery-dots { bottom: 20px; }

@media (max-width: 820px) {
  .gallery-bento-main {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(360px, 68vw) 150px;
    height: auto;
    min-height: 0;
    padding: 0 16px;
  }

  .gallery-bento-feature { height: auto; }

  .gallery-bento-grid {
    grid-template-columns: repeat(4, minmax(145px, 1fr));
    grid-template-rows: 150px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }
}

@media (max-width: 520px) {
  .gallery-bento-main {
    grid-template-rows: 76vw 112px;
    gap: 10px;
    padding: 0 12px;
  }

  .gallery-bento-feature { border-radius: 18px 4px 18px 4px; }
  .gallery-bento-grid { grid-template-columns: repeat(4, 128px); grid-template-rows: 112px; gap: 8px; }
  .gallery-bento-tile { border-radius: 4px 12px 4px 12px; }
  .gallery-bento-feature .gallery-arrow-prev { left: 12px; }
  .gallery-bento-feature .gallery-arrow-next { right: 12px; }
  .gallery-bento-feature .gallery-count { top: 12px; right: 12px; }
  .gallery-bento-feature .gallery-dots { bottom: 14px; }
}

/* Final Bento sizing overrides, intentionally last so the selected image controls the composition. */
.property-gallery { overflow: hidden; }
.gallery-bento-main { overflow: hidden; }

@media (min-width: 821px) {
  .gallery-bento-main.is-portrait {
    grid-template-columns: minmax(280px, calc(min(68vw, 760px) * .5622)) minmax(0, 1fr);
  }

  .gallery-bento-main.is-landscape {
    grid-template-columns: minmax(0, 3.35fr) minmax(250px, 1fr);
    height: auto;
    min-height: 0;
  }

  .gallery-bento-main.is-landscape .gallery-bento-feature {
    height: auto;
    aspect-ratio: 16 / 9;
  }

.gallery-bento-main.is-landscape .gallery-bento-grid { height: 100%; }

/* Final lightbox sizing: the frame follows the real image ratio, so controls sit on the photo. */
.gallery-lightbox {
  background: #f5f6f3;
}

.gallery-lightbox:not([open]) { display: none; }
.gallery-lightbox[open] { display: grid; }

.gallery-lightbox::backdrop {
  background: #f5f6f3;
  backdrop-filter: none;
}

.lightbox-stage {
  width: min(94vw, 1400px);
  height: min(92vh, 900px);
  max-width: none;
  max-height: none;
  margin: 0;
}

.gallery-lightbox figure {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
}

.gallery-lightbox figure img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

.gallery-lightbox figcaption { display: none; }

.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }

@media (max-width: 720px) {
  .lightbox-stage {
    width: calc(100vw - 24px);
    height: calc(100vh - 24px);
  }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}
}

/* Keep the lightbox hidden until the native dialog is actually open on every viewport. */
.gallery-lightbox:not([open]) { display: none; }
.gallery-lightbox[open] { display: grid; }

/* The selected image defines the Bento height. This prevents artificial paper bands
   when a listing switches between portrait, landscape, and tall editorial photos. */
.gallery-bento-main {
  height: auto;
  min-height: 0;
  align-items: stretch;
}

.gallery-bento-feature {
  height: auto;
  aspect-ratio: var(--gallery-image-ratio, 1.5);
  background: transparent;
}

.gallery-bento-feature > img {
  object-fit: cover;
  background: transparent;
}

.gallery-bento-grid {
  height: auto;
  align-self: stretch;
}

@media (min-width: 821px) {
  .gallery-bento-main.is-portrait {
    grid-template-columns: minmax(280px, var(--gallery-portrait-width, 428px)) minmax(0, 1fr);
  }

  .gallery-bento-main.is-portrait .gallery-bento-feature {
    width: 100%;
    height: var(--gallery-feature-height, 760px);
    align-self: start;
  }

  .gallery-bento-main.is-portrait .gallery-bento-grid {
    height: var(--gallery-feature-height, 760px);
  }

  .gallery-bento-main.is-landscape {
    grid-template-columns: minmax(0, 3.35fr) minmax(250px, 1fr);
  }

  .gallery-bento-main.is-landscape .gallery-bento-feature {
    aspect-ratio: var(--gallery-image-ratio, 1.7778);
  }
}

@media (max-width: 820px) {
  .gallery-bento-main {
    grid-template-rows: auto 150px;
  }

  .gallery-bento-feature {
    aspect-ratio: var(--gallery-image-ratio, 1.5);
  }
}

@media (max-width: 520px) {
  .gallery-bento-main { grid-template-rows: auto 112px; }
}

/* Bourbon Park pilot: cleaner reference-led property layout. */
.property-pilot-clean {
  --font-sans: Arial, "Helvetica Neue", sans-serif;
  background: #fff;
  color: #132d40;
  font-family: var(--font-sans);
}

.property-pilot-clean .property-site-header {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
  min-height: 78px;
  padding: 0 clamp(24px, 4vw, 60px);
  border-bottom-color: rgba(19, 45, 64, .12);
  background: #fff;
}

.property-pilot-clean .property-site-header .brand {
  width: 148px;
}

.property-pilot-clean .property-site-header .main-nav {
  justify-content: center;
  gap: clamp(22px, 3vw, 42px);
}

.property-pilot-clean .property-site-header .main-nav a {
  color: #132d40;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
}

.property-pilot-clean .property-contact {
  justify-self: end;
}

.property-pilot-clean .property-contact a {
  color: #132d40;
}

.property-mobile-menu,
.property-mobile-search,
.property-mobile-share {
  display: none;
}

.property-pilot-clean .property-page {
  max-width: 1400px;
  padding: 0 clamp(18px, 3.3vw, 44px) 88px;
  background: #fff;
}

.property-pilot-clean .property-gallery {
  margin: 0;
  overflow: visible;
}

.property-pilot-clean .gallery-bento-main {
  max-width: 1320px;
  margin: 24px auto 0;
  padding: 0;
  gap: 10px;
  background: #fff;
}

.property-pilot-clean .gallery-bento-feature,
.property-pilot-clean .gallery-bento-tile {
  border-radius: 2px;
  background: #edf0ef;
}

.property-pilot-clean .gallery-bento-feature::after {
  display: none;
}

.property-pilot-clean .gallery-bento-tile {
  border-radius: 2px;
}

.property-pilot-clean .gallery-bento-tile:nth-child(2n) {
  border-radius: 2px;
}

.property-pilot-clean .gallery-bento-tile:focus-visible {
  outline-color: #145277;
}

.property-pilot-clean .gallery-count {
  right: 14px;
  top: auto;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: 3px;
  background: rgba(12, 35, 49, .78);
  color: #fff;
  font-size: 10px;
  letter-spacing: .08em;
}

.property-pilot-clean .gallery-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.58);
  background: rgba(255,255,255,.92);
  color: #132d40;
}

.property-pilot-clean .gallery-dots {
  bottom: 15px;
}

.property-pilot-clean .gallery-dot {
  width: 7px;
  height: 7px;
  border-color: rgba(255,255,255,.8);
}

.property-pilot-clean .property-intro,
.property-pilot-clean .property-details {
  max-width: 1320px;
  padding-right: 0;
  padding-left: 0;
  background: #fff;
}

.property-pilot-clean .property-intro {
  min-height: 0;
  padding-top: 42px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(19, 45, 64, .14);
}

.property-pilot-clean .property-type,
.property-pilot-clean .property-code,
.property-pilot-clean .section-kicker {
  color: #587083;
  font-size: 10px;
  letter-spacing: .16em;
}

.property-pilot-clean .property-intro h1 {
  max-width: 760px;
  margin: 10px 0 8px;
  color: #132d40;
  font-size: clamp(34px, 3.7vw, 54px);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.02;
}

.property-pilot-clean .property-location {
  color: #667d8c;
  font-size: 15px;
}

.property-pilot-clean .property-intro-side {
  justify-content: flex-start;
  padding-top: 2px;
}

.property-pilot-clean .property-code {
  margin-bottom: 8px;
}

.property-pilot-clean .property-price {
  margin-bottom: 18px;
  color: #132d40;
  font-size: 26px;
  font-weight: 500;
}

.property-pilot-clean .property-intro-actions {
  gap: 18px;
}

.property-pilot-clean .primary-action,
.property-pilot-clean .whatsapp-text-action,
.property-pilot-clean .share-action {
  color: #132d40;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .11em;
}

.property-pilot-clean .primary-action {
  padding: 0 0 8px;
  border-bottom-color: #132d40;
}

.property-pilot-clean .whatsapp-text-action {
  padding: 0 0 8px;
  border-bottom-color: #6da866;
  color: #528657;
}

.property-pilot-clean .share-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid #132d40;
  background: transparent;
  cursor: pointer;
}

.property-pilot-clean .share-action:hover,
.property-pilot-clean .share-action:focus-visible {
  color: #145277;
}

.property-pilot-clean .property-details {
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(48px, 8vw, 120px);
  padding-top: 36px;
}

.property-pilot-clean .property-story {
  display: flex;
  flex-direction: column;
  max-width: 780px;
}

.property-pilot-clean .property-story > .section-kicker {
  display: none;
}

.property-pilot-clean .property-story h2 {
  order: 0;
  max-width: none;
  margin: 0 0 18px;
  color: #132d40;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.15;
}

.property-pilot-clean .property-stats {
  order: 1;
  max-width: none;
  margin: 0 0 30px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top-color: rgba(19, 45, 64, .14);
}

.property-pilot-clean .property-copy {
  order: 2;
  max-width: 760px;
  color: #4f6472;
  font-size: 16px;
  line-height: 1.68;
}

.property-pilot-clean .property-features { order: 3; }
.property-pilot-clean .property-map-block { order: 4; }

.property-pilot-clean .stat {
  min-height: 84px;
  padding-top: 16px;
  border-right: 1px solid rgba(19, 45, 64, .12);
}

.property-pilot-clean .stat:last-child {
  border-right: 0;
}

.property-pilot-clean .stat-icon {
  color: #145277;
}

.property-pilot-clean .stat-copy strong {
  color: #132d40;
  font-size: 20px;
}

.property-pilot-clean .stat-copy span {
  color: #708391;
  font-size: 9px;
}

.property-pilot-clean .inquiry-card {
  top: 24px;
  border: 1px solid rgba(19, 45, 64, .14);
  border-radius: 4px;
  background: #fafbfa;
  box-shadow: none;
}

@media (max-width: 820px) {
  .property-pilot-clean .property-site-header {
    display: flex;
    min-height: 68px;
    padding: 0 16px;
    gap: 10px;
  }

  .property-pilot-clean .property-site-header .brand {
    order: 1;
    justify-self: auto;
    width: 126px;
    margin-right: auto;
  }

  .property-pilot-clean .property-site-header .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    z-index: 10;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(19, 45, 64, .13);
    background: #fff;
    box-shadow: 0 12px 28px rgba(19,45,64,.08);
  }

  .property-pilot-clean.mobile-navigation-open .property-site-header .main-nav {
    display: flex;
  }

  .property-pilot-clean .property-site-header .main-nav a {
    padding: 14px 12px;
    text-align: center;
  }

  .property-pilot-clean .property-contact { display: none; }

  .property-pilot-clean .property-mobile-menu,
  .property-pilot-clean .property-mobile-search,
  .property-pilot-clean .property-mobile-share {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #132d40;
  }

  .property-pilot-clean .property-mobile-share { order: 2; cursor: pointer; }
  .property-pilot-clean .property-mobile-menu { order: 3; cursor: pointer; }
  .property-pilot-clean .property-mobile-search { order: 4; }
  .property-pilot-clean .property-mobile-share:hover,
  .property-pilot-clean .property-mobile-share:focus-visible,
  .property-pilot-clean .property-mobile-menu:hover,
  .property-pilot-clean .property-mobile-menu:focus-visible,
  .property-pilot-clean .property-mobile-search:hover,
  .property-pilot-clean .property-mobile-search:focus-visible {
    color: #145277;
  }

  .property-pilot-clean .property-page {
    padding-right: 0;
    padding-left: 0;
  }

  .property-pilot-clean .gallery-bento-main {
    display: block;
    margin-top: 0;
    padding: 0;
  }

  .property-pilot-clean .gallery-bento-feature {
    width: 100%;
    min-height: 0;
    border-radius: 0;
  }

  .property-pilot-clean .gallery-bento-feature > img {
    object-fit: cover;
  }

  .property-pilot-clean .gallery-bento-grid { display: none; }

  .property-pilot-clean .gallery-arrow {
    opacity: 1;
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .property-pilot-clean .gallery-arrow-prev { left: 14px; }
  .property-pilot-clean .gallery-arrow-next { right: 14px; }
  .property-pilot-clean .gallery-count { right: 16px; bottom: 16px; }

  .property-pilot-clean .property-intro,
  .property-pilot-clean .property-details {
    padding-right: 20px;
    padding-left: 20px;
  }

  .property-pilot-clean .property-intro {
    padding-top: 30px;
    padding-bottom: 28px;
  }

  .property-pilot-clean .property-intro h1 {
    font-size: clamp(32px, 8.5vw, 42px);
    letter-spacing: -.02em;
    line-height: 1.04;
  }

  .property-pilot-clean .property-location { font-size: 14px; }

  .property-pilot-clean .property-intro-side {
    padding-top: 24px;
  }

  .property-pilot-clean .property-intro-actions {
    flex-wrap: wrap;
  }

  .property-pilot-clean .property-details {
    gap: 38px;
    padding-top: 30px;
  }

  .property-pilot-clean .property-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 26px;
  }

  .property-pilot-clean .stat:nth-child(2) { border-right: 0; }
  .property-pilot-clean .stat:nth-child(n+3) { border-top: 1px solid rgba(19,45,64,.12); }
  .property-pilot-clean .stat:nth-child(3) { padding-left: 0; }
  .property-pilot-clean .stat:nth-child(4) { padding-right: 0; }
}

@media (max-width: 520px) {
  .property-pilot-clean .property-intro h1 { font-size: clamp(32px, 8.5vw, 42px); }
  .property-pilot-clean .property-intro-actions { gap: 13px; }
  .property-pilot-clean .primary-action,
  .property-pilot-clean .whatsapp-text-action,
  .property-pilot-clean .share-action { font-size: 9px; }
  .property-pilot-clean .property-copy { font-size: 16px; line-height: 1.62; }
}

@media (min-width: 821px) {
  .property-pilot-clean .property-site-header {
    display: flex;
    justify-content: space-between;
  }

  .property-pilot-clean .property-site-header .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .property-pilot-clean .property-site-header .main-nav {
    margin-right: auto;
  }

  .property-pilot-clean .property-contact { display: none; }

  .property-pilot-clean .property-mobile-search {
    display: grid;
    width: 30px;
    height: 30px;
    margin-left: auto;
    place-items: center;
    color: #132d40;
  }
}

/* Keep the slideshow controls on a stable stage while each photo adapts inside it. */
.property-body .gallery-bento-main {
  position: relative;
}

@media (min-width: 821px) {
  .property-body .gallery-bento-main,
  .property-body .gallery-bento-main.is-portrait,
  .property-body .gallery-bento-main.is-landscape {
    height: min(62vw, 720px);
    min-height: 520px;
    grid-template-columns: minmax(0, 1.82fr) minmax(250px, 1fr);
    grid-template-rows: minmax(0, 1fr);
  }

  .property-body .gallery-bento-feature,
  .property-body .gallery-bento-main.is-portrait .gallery-bento-feature,
  .property-body .gallery-bento-main.is-landscape .gallery-bento-feature {
    height: 100%;
    aspect-ratio: auto;
  }

  .property-body .gallery-bento-feature > img {
    object-fit: contain;
    background: #fff;
  }

  .property-body .gallery-bento-grid {
    height: 100%;
  }
}

/* Local Bourbon Park study — Delux content in the reference's calm editorial hierarchy. */
.property-reference-breadcrumb { display: none; }
.gallery-reference-open { display: none; }
.lightbox-share { display: none; }

.property-pilot-clean {
  --pilot-ink: #162f40;
  --pilot-line: rgba(22, 47, 64, .14);
}

.property-pilot-clean .property-reference-breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  width: min(1074px, calc(100% - 48px));
  margin: 38px auto 32px;
  color: #74808a;
  font-size: 13px;
  line-height: 1;
}

.property-pilot-clean .property-reference-breadcrumb a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.property-pilot-clean .property-reference-breadcrumb span:last-child { color: #53636e; }

.property-pilot-clean .property-gallery {
  display: block;
  width: min(1074px, calc(100% - 48px));
  height: auto;
  min-height: 0;
  margin: 0 auto;
  overflow: visible;
}

.property-pilot-clean .gallery-toolbar,
.property-pilot-clean .gallery-secondary { display: none; }

.property-pilot-clean .gallery-bento-main,
.property-pilot-clean .gallery-bento-main.is-portrait,
.property-pilot-clean .gallery-bento-main.is-landscape {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(260px, 1fr);
  grid-template-rows: 1fr;
  width: 100%;
  height: min(39vw, 500px);
  min-height: 390px;
  margin: 0;
  padding: 0;
  gap: 24px;
  overflow: visible;
  background: transparent;
}

.property-pilot-clean .gallery-bento-feature,
.property-pilot-clean .gallery-bento-main.is-portrait .gallery-bento-feature,
.property-pilot-clean .gallery-bento-main.is-landscape .gallery-bento-feature {
  height: 100% !important;
  min-height: 0;
  border-radius: 11px;
  background: #e8eceb;
}

.property-pilot-clean .gallery-bento-feature::after,
.property-pilot-clean .gallery-bento-tile::after { display: none; }

.property-pilot-clean .gallery-bento-feature > img { width: 100% !important; height: 100% !important; object-fit: cover !important; object-position: center; }

.property-pilot-clean .gallery-bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  height: 100% !important;
  gap: 24px;
}

.property-pilot-clean .gallery-bento-tile,
.property-pilot-clean .gallery-bento-tile:nth-child(2n) {
  border-radius: 11px;
  background: #e8eceb;
}

.property-pilot-clean .gallery-bento-tile img { object-position: center; }

.property-pilot-clean .gallery-arrow {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  color: var(--pilot-ink);
}

.property-pilot-clean .gallery-bento-feature:hover .gallery-arrow,
.property-pilot-clean .gallery-arrow:focus-visible { opacity: 1; }

.property-pilot-clean .gallery-arrow-prev { left: -62px; }
.property-pilot-clean .gallery-arrow-next { right: -62px; }
.property-pilot-clean .gallery-count,
.property-pilot-clean .gallery-dots { display: none; }

.property-pilot-clean .gallery-reference-open {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  color: var(--pilot-ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  transition: transform 160ms ease, background-color 160ms ease;
}

.property-pilot-clean .gallery-reference-open:hover,
.property-pilot-clean .gallery-reference-open:focus-visible { background: #fff; }
.property-pilot-clean .gallery-reference-open:active { transform: scale(.97); }

.property-pilot-clean .property-intro,
.property-pilot-clean .property-details {
  max-width: 1074px;
}

.property-pilot-clean .property-intro {
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 52px;
  padding-top: 58px;
  padding-bottom: 46px;
}

.property-pilot-clean .property-intro h1 {
  max-width: 700px;
  font-size: clamp(38px, 4.4vw, 58px);
  letter-spacing: -.045em;
}

.property-pilot-clean .gallery-lightbox {
  background: #fff;
  color: var(--pilot-ink);
}

.property-pilot-clean .gallery-lightbox::backdrop { background: rgba(255, 255, 255, .98); backdrop-filter: none; }

.property-pilot-clean .lightbox-close,
.property-pilot-clean .lightbox-share {
  position: fixed;
  z-index: 4;
  top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 32px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--pilot-ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.property-pilot-clean .lightbox-close { left: 42px; width: auto; height: auto; }
.property-pilot-clean .lightbox-share { right: 42px; }

.property-pilot-clean .lightbox-stage { max-width: min(80vw, 1100px); max-height: calc(100vh - 150px); }
.property-pilot-clean .gallery-lightbox figure img { max-width: min(80vw, 1100px); max-height: calc(100vh - 150px); }
.property-pilot-clean .lightbox-arrow { width: 40px; height: 40px; border: 0; background: rgba(255, 255, 255, .9); color: var(--pilot-ink); }
.property-pilot-clean .lightbox-prev { left: -62px; }
.property-pilot-clean .lightbox-next { right: -62px; }

@media (max-width: 820px) {
  .property-pilot-clean .property-reference-breadcrumb { display: none; }
  .property-pilot-clean .property-gallery { width: 100%; }
  .property-pilot-clean .gallery-bento-main,
  .property-pilot-clean .gallery-bento-main.is-portrait,
  .property-pilot-clean .gallery-bento-main.is-landscape {
    display: block;
    height: 86vw;
    min-height: 0;
  }
  .property-pilot-clean .gallery-bento-feature { border-radius: 0; }
  .property-pilot-clean .gallery-bento-grid { display: none; }
  .property-pilot-clean .gallery-arrow { display: none; }
  .property-pilot-clean .gallery-reference-open { right: 16px; bottom: 16px; }
  .property-pilot-clean .property-intro { grid-template-columns: 1fr; padding-top: 36px; }
  .property-pilot-clean .lightbox-close { top: 22px; left: 22px; }
  .property-pilot-clean .lightbox-share { top: 22px; right: 22px; }
  .property-pilot-clean .lightbox-stage,
  .property-pilot-clean .gallery-lightbox figure img { max-width: calc(100vw - 32px); max-height: calc(100vh - 112px); }
  .property-pilot-clean .lightbox-arrow { display: grid; }
  .property-pilot-clean .lightbox-prev { left: 4px; }
  .property-pilot-clean .lightbox-next { right: 4px; }
}

@media (max-width: 820px) {
  .property-body .gallery-bento-main {
    height: clamp(420px, 112vw, 620px);
    grid-template-rows: 1fr 112px;
  }

  .property-body .gallery-bento-feature {
    height: 100%;
    aspect-ratio: auto;
  }

  .property-body .gallery-bento-feature > img {
    object-fit: contain;
    background: #fff;
  }
}

.property-body .gallery-arrow {
  border-color: rgba(19, 45, 64, .22);
  background: rgba(255, 255, 255, .96);
  color: #132d40;
}

/* Final local study: full editorial gallery, calm fact row and related stock. */
.lightbox-grid,
.similar-properties { display: none; }

.property-pilot-clean .property-stats {
  grid-template-columns: repeat(5, max-content);
  gap: clamp(22px, 3.8vw, 54px);
  margin: 0 0 36px;
  border-top: 0;
}

.property-pilot-clean .stat,
.property-pilot-clean .stat:last-child {
  min-height: 0;
  padding: 0;
  border: 0;
}

.property-pilot-clean .stat-copy strong {
  font-size: 18px;
  font-weight: 600;
}

.property-pilot-clean .stat-copy span {
  margin-top: 2px;
  color: #526570;
  font-size: 10px;
  letter-spacing: .08em;
}

.property-pilot-clean .gallery-lightbox {
  display: none;
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
  padding: 0;
  overflow-y: auto;
  border: 0;
  scroll-behavior: smooth;
}

.property-pilot-clean .gallery-lightbox[open] { display: block; }

.property-pilot-clean .lightbox-stage { display: none; }

.property-pilot-clean .lightbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: min(1500px, calc(100vw - 68px));
  margin: 0 auto;
  padding: 96px 0 48px;
}

.property-pilot-clean .lightbox-grid figure {
  aspect-ratio: 1.35 / 1;
  margin: 0;
  overflow: hidden;
  border-radius: 11px;
  background: #edf0ef;
}

.property-pilot-clean .lightbox-grid figure:nth-child(3n) {
  grid-column: 1 / -1;
  aspect-ratio: 2.1 / 1;
}

.property-pilot-clean .lightbox-grid figure img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.property-pilot-clean .similar-properties {
  display: block;
  width: 100vw;
  margin: 96px calc(50% - 50vw) -88px;
  padding: clamp(58px, 7vw, 88px) max(24px, calc((100vw - 1074px) / 2));
  background: #f3f4f2;
}

.property-pilot-clean .similar-properties h2 {
  max-width: 1074px;
  margin: 0 auto 36px;
  color: #132d40;
  font-size: clamp(30px, 3.1vw, 44px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1;
}

.property-pilot-clean .similar-properties-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1074px;
  margin: 0 auto;
}

.property-pilot-clean .similar-property-card {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  color: #132d40;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.property-pilot-clean .similar-property-card:hover,
.property-pilot-clean .similar-property-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(19, 45, 64, .12);
}

.property-pilot-clean .similar-property-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}

.property-pilot-clean .similar-property-copy {
  position: relative;
  min-height: 205px;
  padding: 23px 22px 24px;
}

.property-pilot-clean .similar-property-copy > p:first-child {
  margin: 0 86px 12px 0;
  color: #6a7780;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.property-pilot-clean .similar-property-copy > span {
  position: absolute;
  top: 21px;
  right: 20px;
  padding: 5px 7px;
  border-radius: 5px;
  background: #f2f4f3;
  color: #355269;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
}

.property-pilot-clean .similar-property-copy h3 {
  margin: 0 0 10px;
  color: #132d40;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.1;
}

.property-pilot-clean .similar-property-area,
.property-pilot-clean .similar-property-stats {
  margin: 0;
  color: #61717b;
  font-size: 13px;
  line-height: 1.5;
}

.property-pilot-clean .similar-property-price {
  display: grid;
  gap: 2px;
  margin: 18px 0 0;
}

.property-pilot-clean .similar-property-price span {
  color: #6d7c86;
  font-size: 11px;
}

.property-pilot-clean .similar-property-price strong {
  color: #132d40;
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -.02em;
}

@media (max-width: 820px) {
  .property-pilot-clean .property-details { grid-template-columns: minmax(0, 1fr); }

  .property-pilot-clean .property-stats {
    grid-template-columns: repeat(2, minmax(0, max-content));
    gap: 22px 34px;
  }

  .property-pilot-clean .gallery-lightbox { min-height: 100dvh; }

  .property-pilot-clean .lightbox-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    width: calc(100vw - 24px);
    padding: 76px 0 24px;
  }

  .property-pilot-clean .lightbox-grid figure,
  .property-pilot-clean .lightbox-grid figure:nth-child(3n) {
    grid-column: auto;
    aspect-ratio: 1.25 / 1;
    border-radius: 8px;
  }

  .property-pilot-clean .similar-properties {
    margin-top: 64px;
    margin-bottom: -44px;
    padding: 52px 20px;
  }

  .property-pilot-clean .similar-properties h2 {
    margin-bottom: 24px;
    font-size: 32px;
  }

  .property-pilot-clean .similar-properties-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .property-pilot-clean .similar-property-copy { min-height: 0; }
}

/* Match the generous navigation geometry used on the landing page and catalog. */
.property-site-header,
.property-pilot-clean .property-site-header {
  min-height: 84px;
  padding-right: clamp(24px, 5vw, 76px);
  padding-left: clamp(24px, 5vw, 76px);
}

.property-site-header .brand,
.property-pilot-clean .property-site-header .brand { width: 158px; }

.property-site-header .main-nav a,
.property-pilot-clean .property-site-header .main-nav a {
  font-size: 10px;
  letter-spacing: .12em;
}

.property-contact a { width: 38px; height: 38px; }

@media (min-width: 821px) {
  .property-pilot-clean .property-site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    justify-content: initial;
  }

  .property-pilot-clean .property-site-header .brand {
    position: static;
    grid-column: 1;
    justify-self: start;
    transform: none;
  }

  .property-pilot-clean .property-site-header .main-nav {
    grid-column: 2;
    justify-self: center;
    margin: 0;
  }

  .property-pilot-clean .property-contact {
    display: flex;
    grid-column: 3;
    justify-self: end;
  }

  .property-pilot-clean .property-mobile-search { display: none; }
}

@media (max-width: 820px) {
  .property-site-header,
  .property-pilot-clean .property-site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto auto;
    grid-template-rows: 78px;
    min-height: 78px;
    padding-right: 18px;
    padding-left: 18px;
    gap: 2px;
    align-items: center;
  }

  .property-site-header .brand,
  .property-pilot-clean .property-site-header .brand {
    grid-column: 1;
    grid-row: 1;
    width: 128px;
    align-self: center;
  }

  .property-mobile-share { grid-column: 2; grid-row: 1; }
  .property-mobile-search { grid-column: 3; grid-row: 1; }
  .property-mobile-menu { grid-column: 4; grid-row: 1; }

  .property-mobile-menu,
  .property-mobile-search,
  .property-mobile-share {
    align-self: center;
    width: 38px;
    height: 38px;
  }
}

/* Final mobile navigation layer: the menu replaces the page instead of floating over it. */
@media (max-width: 820px) {
  body.mobile-navigation-open { overflow: hidden; }

  .property-site-header .main-nav,
  .property-pilot-clean .property-site-header .main-nav {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    min-width: 0;
    min-height: 100dvh;
    padding: 104px 28px 38px;
    border: 0;
    background: #fff;
    box-shadow: 0 18px 48px rgba(5, 23, 40, .18);
  }

  body.mobile-navigation-open .property-site-header .main-nav {
    display: flex;
  }

  .property-site-header .main-nav a,
  .property-pilot-clean .property-site-header .main-nav a {
    display: flex;
    min-height: 62px;
    align-items: center;
    padding: 0 4px;
    border-bottom: 1px solid rgba(11, 46, 77, .14);
    color: var(--navy);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: .08em;
  }

  .property-site-header .property-mobile-menu,
  .property-pilot-clean .property-mobile-menu {
    position: relative;
    z-index: 1001;
  }
}
