:root {
  color-scheme: dark;
  --background: #090c0a;
  --surface: #111612;
  --surface-soft: #171d18;
  --foreground: #f3f2ea;
  --muted: #a6ada5;
  --glass: rgba(8, 13, 11, 0.7);
  --glass-border: rgba(255, 255, 255, 0.16);
  --line: rgba(255, 255, 255, 0.12);
  --accent: #d9ff63;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--background);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 20% -10%, rgba(73, 97, 67, 0.2), transparent 32rem),
    var(--background);
  color: var(--foreground);
}

body:has(.panorama-section:not([hidden])) {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  right: 22px;
  left: 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  pointer-events: none;
}

.brand,
.section-switcher,
.language-switcher {
  border: 1px solid var(--glass-border);
  background: var(--glass);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px) saturate(130%);
  pointer-events: auto;
}

.brand {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 48px;
  padding: 7px 16px 7px 9px;
  border-radius: 15px;
  color: var(--foreground);
  text-decoration: none;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(217, 255, 99, 0.95), rgba(217, 255, 99, 0.15)),
    #33412f;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.brand small,
.brand strong {
  display: block;
}

.brand small {
  color: var(--accent);
  font-size: 0.58rem;
  font-weight: 720;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand strong {
  margin-top: 2px;
  font-size: 0.82rem;
  font-weight: 630;
  letter-spacing: -0.01em;
}

.section-switcher {
  justify-self: center;
  display: flex;
  gap: 4px;
  padding: 4px;
  border-radius: 15px;
}

.section-switcher button {
  min-height: 38px;
  padding: 0 15px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 650;
  transition:
    background 150ms ease,
    color 150ms ease,
    transform 150ms ease;
}

.section-switcher button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.section-switcher button:active {
  transform: scale(0.97);
}

.section-switcher button.is-active {
  color: #0a0d0b;
  background: var(--accent);
}

.language-switcher {
  justify-self: end;
  display: flex;
  gap: 3px;
  padding: 4px;
  border-radius: 15px;
}

.language-switcher button {
  min-width: 38px;
  min-height: 38px;
  padding: 0 8px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  transition:
    background 150ms ease,
    color 150ms ease,
    transform 150ms ease;
}

.language-switcher button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.language-switcher button:active {
  transform: scale(0.96);
}

.language-switcher button.is-active {
  color: #0a0d0b;
  background: var(--accent);
}

.section-switcher button:focus-visible,
.language-switcher button:focus-visible,
.gallery-filters button:focus-visible,
.gallery-card:focus-visible,
.gallery-footer button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.gallery-section {
  width: min(1440px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding: 150px 34px 50px;
}

.gallery-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.7fr);
  gap: 44px;
  align-items: end;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-intro h1 {
  max-width: 850px;
  margin: 10px 0 0;
  font-size: clamp(2.7rem, 6.7vw, 6.8rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.gallery-summary {
  max-width: 410px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: clamp(0.9rem, 1.35vw, 1.05rem);
  line-height: 1.65;
}

.property-overview {
  display: grid;
  grid-template-columns: minmax(190px, 0.6fr) minmax(0, 2.4fr);
  gap: 48px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.property-price small,
.property-price strong {
  display: block;
}

.property-price small {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 680;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.property-price strong {
  margin-top: 5px;
  color: var(--accent);
  font-size: clamp(1.55rem, 2.4vw, 2.3rem);
  font-weight: 540;
  letter-spacing: -0.045em;
}

.property-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.property-contact-actions a {
  padding: 7px 10px;
  border: 1px solid rgba(217, 255, 99, 0.22);
  border-radius: 999px;
  color: #dce1d9;
  font-size: 0.61rem;
  font-weight: 620;
  line-height: 1.2;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.property-contact-actions a:hover,
.property-contact-actions a:focus-visible {
  border-color: var(--accent);
  background: rgba(217, 255, 99, 0.08);
  color: var(--accent);
}

.property-facts {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
}

.property-facts div {
  min-width: 0;
  padding: 3px 24px;
  border-left: 1px solid var(--line);
}

.property-facts dt {
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.property-facts dd {
  margin: 7px 0 0;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 580;
  letter-spacing: -0.015em;
}

.gallery-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.gallery-filters button {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 620;
  transition:
    border-color 150ms ease,
    background 150ms ease,
    color 150ms ease;
}

.gallery-filters button:hover {
  border-color: rgba(217, 255, 99, 0.42);
  color: #fff;
}

.gallery-filters button.is-active {
  border-color: rgba(217, 255, 99, 0.5);
  background: rgba(217, 255, 99, 0.12);
  color: var(--accent);
}

.gallery-filters span {
  margin-left: 4px;
  opacity: 0.58;
}

.gallery-count {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  white-space: nowrap;
}

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

.gallery-card {
  position: relative;
  aspect-ratio: 3 / 2;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 5px;
  background: var(--surface);
  cursor: zoom-in;
}

.gallery-card-aerial:nth-child(3n) {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 550ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 300ms ease;
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(2, 4, 3, 0.76));
  content: "";
  opacity: 0;
  transition: opacity 240ms ease;
}

.gallery-card:hover img {
  filter: saturate(1.04);
  transform: scale(1.035);
}

.gallery-card:hover::after,
.gallery-card:hover .gallery-card-meta {
  opacity: 1;
}

.gallery-card-meta {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 14px;
  left: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
  opacity: 0;
  transition: opacity 240ms ease;
}

.gallery-card-meta small {
  color: var(--accent);
  font-size: 0.58rem;
  font-weight: 720;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gallery-card-meta strong {
  font-size: 0.69rem;
  font-weight: 580;
}

.property-details {
  margin-top: 112px;
  padding-top: 70px;
  border-top: 1px solid var(--line);
}

.property-details-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.65fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 42px;
}

.property-details-intro h2 {
  max-width: 800px;
  margin: 11px 0 0;
  font-size: clamp(2.25rem, 4.8vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.property-details-intro > p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.72;
}

.property-details-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr 0.9fr;
  gap: 12px;
}

.property-details-grid--four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.property-details-grid--four .detail-card:last-child {
  grid-column: auto;
}

.detail-card {
  position: relative;
  min-height: 100%;
  padding: 30px 28px 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 52%),
    var(--surface);
}

.detail-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(217, 255, 99, 0.34);
  font-size: 0.65rem;
  font-weight: 720;
  letter-spacing: 0.12em;
}

.detail-card h3 {
  margin: 0 0 24px;
  font-size: 1.28rem;
  font-weight: 560;
  letter-spacing: -0.035em;
}

.detail-card p {
  margin: -10px 30px 20px 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

.detail-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-card li {
  position: relative;
  padding-left: 17px;
  color: #d5dad3;
  font-size: 0.78rem;
  line-height: 1.5;
}

.detail-card li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
  box-shadow: 0 0 0 4px rgba(217, 255, 99, 0.08);
}

.property-lifestyle {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 60px;
  align-items: end;
  margin-top: 12px;
  padding: 40px;
  border: 1px solid rgba(217, 255, 99, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(
      circle at 8% 20%,
      rgba(217, 255, 99, 0.13),
      transparent 36%
    ),
    #111712;
}

.property-lifestyle > p {
  max-width: 830px;
  margin: 0;
  font-size: clamp(1.65rem, 3.25vw, 3.35rem);
  font-weight: 510;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.property-lifestyle div {
  display: grid;
  gap: 13px;
}

.property-lifestyle strong {
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 640;
  line-height: 1.5;
}

.property-lifestyle span {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.65;
}

.listing-contact small {
  color: #7f887d;
  font-size: 0.62rem;
  line-height: 1.5;
}

.listing-links {
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px !important;
}

.listing-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 13px;
  border: 1px solid rgba(217, 255, 99, 0.24);
  border-radius: 999px;
  color: #e9ece7;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.listing-links a:hover,
.listing-links a:focus-visible {
  border-color: var(--accent);
  background: rgba(217, 255, 99, 0.08);
  color: var(--accent);
}

.listing-links a span {
  color: inherit;
  font-size: 0.67rem;
  font-weight: 620;
  line-height: 1.2;
}

.investment-report {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
  margin-top: 112px;
  padding: 78px clamp(28px, 4vw, 58px);
  border: 1px solid rgba(217, 255, 99, 0.17);
  border-radius: 24px;
  background:
    radial-gradient(circle at 4% 6%, rgba(217, 255, 99, 0.11), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 44%),
    #0e130f;
}

.report-copy h2 {
  max-width: 760px;
  margin: 12px 0 0;
  font-size: clamp(2.55rem, 5vw, 5.35rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.report-introduction {
  max-width: 690px;
  margin: 28px 0 0;
  color: #aeb6ab;
  font-size: 0.92rem;
  line-height: 1.75;
}

.report-deliverables {
  display: grid;
  gap: 0;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.report-deliverables li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 15px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.report-deliverables li > span {
  padding-top: 3px;
  color: var(--accent);
  font-size: 0.61rem;
  font-weight: 720;
  letter-spacing: 0.1em;
}

.report-deliverables strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 610;
  letter-spacing: -0.02em;
}

.report-deliverables p {
  max-width: 620px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.65;
}

.report-note {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  padding: 22px 24px;
  border-left: 2px solid var(--accent);
  background: rgba(217, 255, 99, 0.055);
}

.report-note strong {
  color: #e8ece5;
  font-size: 0.78rem;
  line-height: 1.55;
}

.report-note small {
  color: #818a7e;
  font-size: 0.63rem;
  line-height: 1.55;
}

.lead-form {
  position: sticky;
  top: 98px;
  padding: clamp(26px, 3.3vw, 42px);
  border: 1px solid rgba(217, 255, 99, 0.26);
  border-radius: 20px;
  background: #141a15;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
}

.lead-form-heading h3 {
  margin: 9px 0 0;
  font-size: clamp(1.85rem, 3vw, 2.8rem);
  font-weight: 530;
  letter-spacing: -0.055em;
  line-height: 1;
}

.lead-form-heading > p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.65;
}

.lead-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 12px;
  margin-top: 30px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: #cdd3ca;
  font-size: 0.66rem;
  font-weight: 610;
  line-height: 1.35;
}

.lead-form label > span:first-child {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.lead-form label small {
  color: #737c70;
  font-size: 0.58rem;
  font-weight: 540;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  outline: 0;
  background: #0d120e;
  color: #f0f3ee;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 470;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.lead-form input,
.lead-form select {
  height: 44px;
  padding: 0 12px;
}

.lead-form textarea {
  min-height: 94px;
  padding: 12px;
  line-height: 1.55;
  resize: vertical;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #697166;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(217, 255, 99, 0.72);
  box-shadow: 0 0 0 3px rgba(217, 255, 99, 0.07);
}

.lead-form-message {
  grid-column: 1 / -1;
}

.lead-form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.lead-form-consent {
  display: grid !important;
  grid-template-columns: 17px 1fr;
  gap: 10px !important;
  align-items: start;
  margin-top: 20px;
  color: #9da69a !important;
  font-size: 0.61rem !important;
  font-weight: 470 !important;
  line-height: 1.55 !important;
}

.lead-form-consent input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--accent);
}

.lead-form-consent > span {
  display: block !important;
}

.privacy-details {
  margin-top: 16px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 10px;
  color: #8f998c;
  font-size: 0.61rem;
  line-height: 1.55;
}

.privacy-details summary {
  cursor: pointer;
  color: #c5ccc2;
  font-weight: 610;
}

.privacy-details div {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.privacy-details p {
  margin: 0;
}

.privacy-details a {
  width: fit-content;
  color: var(--accent);
}

.lead-form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  margin-top: 20px;
  padding: 14px 16px;
  border: 0;
  border-radius: 10px;
  background: var(--accent);
  color: #10140f;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 720;
  transition:
    transform 160ms ease,
    filter 160ms ease;
}

.lead-form-submit:hover,
.lead-form-submit:focus-visible {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.lead-form-submit:disabled {
  cursor: wait;
  filter: saturate(0.45);
  transform: none;
}

.lead-form-status {
  min-height: 1.5em;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.55;
}

.lead-form-status[data-state="success"] {
  color: var(--accent);
}

.lead-form-status[data-state="error"] {
  color: #ffad9d;
}

.floating-report-cta {
  position: fixed;
  z-index: 15;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 50px;
  padding: 0 13px 0 19px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: var(--accent);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.38),
    0 0 0 6px rgba(217, 255, 99, 0.08);
  color: #10140f;
  font-size: 0.72rem;
  font-weight: 730;
  text-decoration: none;
  animation: floating-cta 3.4s ease-in-out infinite;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    box-shadow 180ms ease;
}

.floating-report-cta::before {
  position: absolute;
  top: -50%;
  left: -30%;
  width: 26%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  content: "";
  opacity: 0.7;
  transform: rotate(18deg);
  transition: left 520ms ease;
}

.floating-report-cta > span:last-child {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(9, 12, 10, 0.12);
  font-size: 0.82rem;
}

.floating-report-cta:hover,
.floating-report-cta:focus-visible {
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.46),
    0 0 0 7px rgba(217, 255, 99, 0.12);
  transform: translateY(-3px);
}

.floating-report-cta:hover::before,
.floating-report-cta:focus-visible::before {
  left: 110%;
}

.floating-report-cta.is-hidden {
  pointer-events: none;
  opacity: 0;
  transform: translateY(18px);
}

@keyframes floating-cta {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -4px;
  }
}

.gallery-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding: 30px 0 15px;
  border-top: 1px solid var(--line);
}

.gallery-footer p {
  margin: 0;
  font-size: clamp(1.4rem, 2.8vw, 2.6rem);
  font-weight: 520;
  letter-spacing: -0.045em;
}

.gallery-footer button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-height: 48px;
  padding: 0 17px;
  border: 1px solid rgba(217, 255, 99, 0.4);
  border-radius: 13px;
  background: rgba(217, 255, 99, 0.1);
  color: var(--accent);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 650;
  white-space: nowrap;
}

.gallery-footer button:hover {
  background: var(--accent);
  color: #0a0d0b;
}

.panorama-section,
.panorama-canvas {
  position: fixed;
  inset: 0;
}

.panorama-section {
  isolation: isolate;
  background: var(--background);
}

.panorama-canvas {
  z-index: -1;
}

.panorama-section::after {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(2, 4, 3, 0.6), transparent 22%),
    linear-gradient(0deg, rgba(2, 4, 3, 0.45), transparent 18%);
  content: "";
  pointer-events: none;
}

.viewer-heading {
  position: fixed;
  z-index: 2;
  top: 94px;
  left: 34px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
  pointer-events: none;
}

.viewer-heading h1 {
  margin: 3px 0 0;
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
  font-weight: 520;
  letter-spacing: -0.04em;
}

.panorama-switcher {
  position: fixed;
  z-index: 2;
  top: 92px;
  left: 50%;
  display: flex;
  gap: 5px;
  padding: 5px;
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  background: var(--glass);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(130%);
  transform: translateX(-50%);
}

.panorama-switcher button {
  min-width: 102px;
  padding: 9px 13px 8px;
  border: 0;
  border-radius: 13px;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
}

.panorama-switcher button:hover:not(:disabled) {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
}

.panorama-switcher button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.panorama-switcher button.is-active {
  color: #0a0d0b;
  background: var(--accent);
}

.panorama-switcher span,
.panorama-switcher small {
  display: block;
}

.panorama-switcher span {
  font-size: 0.79rem;
  font-weight: 650;
}

.panorama-switcher small {
  margin-top: 1px;
  font-size: 0.57rem;
  letter-spacing: 0.08em;
  opacity: 0.63;
  text-transform: uppercase;
}

.viewer-hint {
  position: fixed;
  z-index: 2;
  right: 24px;
  bottom: 18px;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--glass);
  font-size: 0.7rem;
  backdrop-filter: blur(14px);
  pointer-events: none;
}

.psv-navbar {
  background: rgba(7, 10, 8, 0.7);
  backdrop-filter: blur(14px);
}

.psv-loader {
  color: var(--accent);
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(4, 6, 5, 0.96);
  color: #fff;
}

.lightbox::backdrop {
  background: rgba(4, 6, 5, 0.96);
}

.lightbox-frame {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 52px 18px 22px;
}

.lightbox figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  width: 100%;
  height: 100%;
  margin: 0;
  min-height: 0;
}

.lightbox img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.lightbox figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.7rem;
}

.lightbox-label {
  color: #fff;
  font-weight: 620;
}

.lightbox-close,
.lightbox-arrow {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  border-color: rgba(217, 255, 99, 0.5);
  color: var(--accent);
}

.lightbox-close {
  position: fixed;
  z-index: 1;
  top: 18px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  font-size: 1.4rem;
  line-height: 1;
}

.lightbox-arrow {
  width: 44px;
  height: 44px;
  margin: auto;
  border-radius: 50%;
  font-size: 1rem;
}

@media (max-width: 900px) {
  .gallery-section {
    padding-inline: 20px;
  }

  .gallery-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gallery-summary {
    max-width: 620px;
  }

  .property-overview {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .property-facts div:first-child {
    border-left: 0;
  }

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

  .gallery-card-aerial:nth-child(3n) {
    grid-column: auto;
    aspect-ratio: 3 / 2;
  }

  .property-details-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .property-details-intro > p {
    max-width: 640px;
  }

  .property-details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-card:last-child {
    grid-column: 1 / -1;
  }

  .property-lifestyle {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .investment-report {
    grid-template-columns: 1fr;
  }

  .lead-form {
    position: static;
  }

  .panorama-switcher {
    top: auto;
    bottom: 62px;
    width: calc(100% - 24px);
  }

  .panorama-switcher button {
    flex: 1;
    min-width: 0;
    padding-inline: 6px;
  }

  .viewer-hint {
    display: none;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    right: 10px;
    left: 10px;
    gap: 6px;
  }

  .brand {
    min-height: 44px;
    padding: 6px 9px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .brand span:last-child {
    display: none;
  }

  .section-switcher button {
    min-height: 34px;
    padding: 0 8px;
    font-size: 0.68rem;
  }

  .language-switcher {
    padding: 3px;
  }

  .language-switcher button {
    min-width: 31px;
    min-height: 34px;
    padding: 0 5px;
    font-size: 0.62rem;
  }

  .gallery-section {
    padding: 105px 10px 32px;
  }

  .gallery-intro {
    padding: 0 8px 32px;
  }

  .gallery-intro h1 {
    font-size: clamp(2.7rem, 14vw, 4.5rem);
  }

  .property-overview {
    margin: 0 8px;
    padding: 24px 0;
  }

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

  .property-facts div,
  .property-facts div:first-child {
    padding: 2px 14px;
    border-left: 1px solid var(--line);
  }

  .property-facts div:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .property-facts dt {
    white-space: normal;
  }

  .gallery-toolbar {
    display: block;
    padding: 20px 4px;
    overflow: hidden;
  }

  .gallery-filters {
    flex-wrap: nowrap;
    padding-bottom: 6px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .gallery-filters::-webkit-scrollbar {
    display: none;
  }

  .gallery-filters button {
    flex: 0 0 auto;
  }

  .gallery-count {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .gallery-card {
    border-radius: 3px;
  }

  .gallery-card-meta {
    opacity: 1;
  }

  .gallery-card::after {
    opacity: 0.72;
  }

  .property-details {
    margin: 80px 8px 0;
    padding-top: 48px;
  }

  .property-details-intro {
    margin-bottom: 28px;
  }

  .property-details-intro h2 {
    font-size: clamp(2.25rem, 11vw, 3.6rem);
  }

  .property-details-grid {
    grid-template-columns: 1fr;
  }

  .detail-card,
  .detail-card:last-child {
    grid-column: auto;
  }

  .detail-card {
    padding: 26px 22px 28px;
    border-radius: 14px;
  }

  .property-lifestyle {
    padding: 28px 22px;
    border-radius: 14px;
  }

  .investment-report {
    margin: 80px 8px 0;
    padding: 40px 22px 24px;
    border-radius: 16px;
  }

  .report-copy h2 {
    font-size: clamp(2.4rem, 12vw, 3.7rem);
  }

  .lead-form {
    margin-inline: -8px;
    padding: 26px 20px;
    border-radius: 14px;
  }

  .lead-form-grid {
    grid-template-columns: 1fr;
  }

  .lead-form-message {
    grid-column: auto;
  }

  .floating-report-cta {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    left: 14px;
    justify-content: space-between;
  }

  .gallery-footer {
    display: block;
    margin: 36px 8px 0;
  }

  .gallery-footer button {
    width: 100%;
    justify-content: space-between;
    margin-top: 18px;
  }

  .viewer-heading {
    top: 76px;
    left: 18px;
  }

  .viewer-heading h1 {
    font-size: 1.3rem;
  }

  .panorama-switcher small {
    display: none;
  }

  .lightbox-frame {
    grid-template-columns: 45px minmax(0, 1fr) 45px;
    padding-inline: 4px;
  }

  .lightbox-arrow {
    width: 38px;
    height: 38px;
  }
}

@media (hover: none) {
  .gallery-card-meta {
    opacity: 1;
  }

  .gallery-card::after {
    opacity: 0.7;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .gallery-card img,
  .section-switcher button,
  .floating-report-cta {
    animation: none;
    transition: none;
  }
}

/* Facilo editorial property system */
:root {
  color-scheme: light;
  --background: oklch(0.97 0.012 82);
  --surface: oklch(0.989 0.007 82);
  --surface-soft: oklch(0.946 0.014 82);
  --foreground: oklch(0.235 0.037 246);
  --muted: oklch(0.49 0.02 246);
  --glass: oklch(0.989 0.007 82 / 0.96);
  --glass-border: oklch(0.83 0.018 82);
  --line: oklch(0.86 0.015 82);
  --accent: oklch(0.62 0.082 72);
  --accent-soft: oklch(0.91 0.04 76);
  --ink-soft: oklch(0.31 0.04 246);
  --success: oklch(0.48 0.09 150);
  --error: oklch(0.52 0.16 28);
  --font-display: "Libre Caslon Display", "Iowan Old Style", Baskerville,
    Georgia, serif;
  --font-ui: Manrope, Avenir, "Avenir Next", "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 10px 30px oklch(0.25 0.025 246 / 0.06);
  --shadow-md: 0 24px 70px oklch(0.25 0.025 246 / 0.1);
  font-family: var(--font-ui);
}

html {
  background: var(--background);
  scroll-padding-top: 120px;
}

body {
  background:
    radial-gradient(circle at 12% 4%, oklch(0.99 0.018 82), transparent 31rem),
    var(--background);
  color: var(--foreground);
  font-family: var(--font-ui);
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

.skip-link {
  position: fixed;
  z-index: 500;
  top: 8px;
  left: 50%;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--foreground);
  color: var(--surface);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transform: translate(-50%, -160%);
  transition: transform 180ms var(--ease-out);
}

.skip-link:focus {
  transform: translate(-50%, 0);
}

.site-header {
  position: fixed;
  z-index: 200;
  top: 20px;
  right: auto;
  left: 50%;
  grid-template-columns: auto minmax(0, 1fr) auto;
  width: min(calc(100% - 40px), 1760px);
  min-height: 76px;
  padding: 9px 10px 9px 14px;
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  background: var(--glass);
  box-shadow: var(--shadow-sm);
  pointer-events: auto;
  transform: translateX(-50%);
}

.brand,
.section-switcher,
.language-switcher {
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.brand {
  gap: 12px;
  min-height: 54px;
  padding: 4px 10px 4px 2px;
  border-radius: 0;
  color: var(--foreground);
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid oklch(0.72 0.06 72);
  border-radius: 50% 50% 46% 46%;
  background: var(--foreground);
  box-shadow: none;
}

.brand-mark::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--accent-soft);
  content: "F";
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.brand small {
  color: var(--accent);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.brand strong {
  margin-top: 3px;
  color: var(--foreground);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.section-switcher {
  justify-self: center;
  align-items: center;
  gap: 4px;
  padding: 0;
}

.section-switcher button,
.section-switcher .header-anchor {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 180ms var(--ease-out),
    color 180ms var(--ease-out),
    transform 120ms var(--ease-out);
}

.section-switcher button:hover,
.section-switcher .header-anchor:hover {
  background: var(--surface-soft);
  color: var(--foreground);
}

.section-switcher button.is-active {
  background: var(--foreground);
  color: var(--surface);
}

.section-switcher button:active,
.section-switcher .header-anchor:active {
  transform: scale(0.97);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  color: var(--foreground);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
}

.header-phone::before {
  margin-right: 8px;
  color: var(--accent);
  content: "↗";
  font-size: 0.78rem;
}

.language-switcher {
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.language-switcher button {
  min-width: 40px;
  min-height: 38px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.64rem;
}

.language-switcher button:hover {
  background: var(--surface-soft);
  color: var(--foreground);
}

.language-switcher button.is-active {
  background: var(--accent-soft);
  color: var(--foreground);
}

.section-switcher button:focus-visible,
.section-switcher .header-anchor:focus-visible,
.language-switcher button:focus-visible,
.header-phone:focus-visible,
.brand:focus-visible,
.gallery-filters button:focus-visible,
.gallery-card:focus-visible,
.gallery-footer button:focus-visible,
.property-contact-actions a:focus-visible,
.listing-links a:focus-visible,
.floating-report-cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.gallery-section {
  display: flex;
  flex-direction: column;
  width: min(1840px, 100%);
  padding: 166px clamp(20px, 4.4vw, 84px) 72px;
}

.gallery-intro {
  order: 1;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: clamp(36px, 7vw, 130px);
  align-items: end;
  padding-bottom: clamp(44px, 6vw, 86px);
  border: 0;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.gallery-intro h1 {
  max-width: 19ch;
  margin: 14px 0 0;
  color: var(--foreground);
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 4.6vw, 5.7rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.99;
  text-wrap: balance;
}

.gallery-summary {
  max-width: 36ch;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  text-wrap: pretty;
}

.gallery-grid {
  order: 2;
  width: 100%;
}

.gallery-grid[data-filter="all"] {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: minmax(330px, 1.9fr) minmax(190px, 0.85fr);
  gap: 5px;
  height: clamp(550px, 48vw, 770px);
  overflow: hidden;
  border-radius: 18px;
  background: var(--line);
  box-shadow: var(--shadow-md);
}

.gallery-grid[data-filter="all"] .gallery-card {
  aspect-ratio: auto;
  min-height: 0;
  border-radius: 0;
}

.gallery-grid[data-filter="all"] .gallery-card:nth-child(1) {
  grid-area: 1 / 1 / 2 / 9;
}

.gallery-grid[data-filter="all"] .gallery-card:nth-child(2) {
  grid-area: 1 / 9 / 2 / 13;
}

.gallery-grid[data-filter="all"] .gallery-card:nth-child(3) {
  grid-area: 2 / 1 / 3 / 5;
}

.gallery-grid[data-filter="all"] .gallery-card:nth-child(4) {
  grid-area: 2 / 5 / 3 / 9;
}

.gallery-grid[data-filter="all"] .gallery-card:nth-child(5) {
  grid-area: 2 / 9 / 3 / 13;
}

.gallery-grid[data-filter="all"] .gallery-card:nth-child(n + 6) {
  display: none;
}

.gallery-grid:not([data-filter="all"]) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
}

.gallery-card {
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: var(--surface-soft);
  box-shadow: none;
}

.gallery-card img {
  transition:
    transform 650ms var(--ease-out),
    filter 300ms var(--ease-out);
}

.gallery-card::after {
  background: linear-gradient(to top, oklch(0.2 0.03 246 / 0.62), transparent 58%);
  opacity: 0;
  transition: opacity 220ms var(--ease-out);
}

.gallery-card:hover img {
  transform: scale(1.025);
}

.gallery-card:hover::after,
.gallery-card:hover .gallery-card-meta,
.gallery-card-all::after,
.gallery-card-all .gallery-card-meta,
.gallery-grid:not([data-filter="all"]) .gallery-card-meta,
.gallery-grid:not([data-filter="all"]) .gallery-card::after {
  opacity: 1;
}

.gallery-card-meta {
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 2;
  color: oklch(0.97 0.012 82);
}

.gallery-card-meta small {
  color: oklch(0.91 0.035 76);
  font-size: 0.61rem;
  letter-spacing: 0.14em;
}

.gallery-card-meta strong {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
}

.gallery-card-all .gallery-card-meta strong {
  font-size: clamp(1.3rem, 2vw, 2rem);
}

.property-overview {
  order: 3;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 2.25fr);
  gap: clamp(30px, 5vw, 80px);
  margin-top: 28px;
  padding: 30px 0 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.property-price small {
  color: var(--muted);
}

.property-price strong {
  color: var(--foreground);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.property-contact-actions {
  gap: 8px;
  margin-top: 16px;
}

.property-contact-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--foreground);
  font-size: 0.65rem;
  font-weight: 700;
}

.property-contact-actions a:first-child {
  border-color: var(--foreground);
  background: var(--foreground);
  color: var(--surface);
}

.property-contact-actions a:hover,
.property-contact-actions a:focus-visible {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--foreground);
}

.property-facts {
  align-items: center;
}

.property-facts div {
  padding: 8px clamp(15px, 2.3vw, 34px);
  border-color: var(--line);
}

.property-facts dt {
  color: var(--muted);
  font-size: 0.61rem;
  letter-spacing: 0.1em;
}

.property-facts dd {
  margin-top: 9px;
  color: var(--foreground);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.45vw, 1.4rem);
  font-weight: 400;
  line-height: 1.25;
}

.gallery-toolbar {
  order: 4;
  padding: 24px 0 0;
}

.gallery-filters button {
  min-height: 42px;
  padding: 0 15px;
  border-color: var(--line);
  background: transparent;
  color: var(--muted);
  font-size: 0.68rem;
}

.gallery-filters button:hover {
  border-color: var(--foreground);
  background: var(--surface);
  color: var(--foreground);
}

.gallery-filters button.is-active {
  border-color: var(--foreground);
  background: var(--foreground);
  color: var(--surface);
}

.gallery-count {
  color: var(--muted);
}

.property-details {
  order: 5;
  margin-top: clamp(84px, 9vw, 150px);
  padding-top: clamp(54px, 7vw, 96px);
  border-color: var(--line);
}

.property-details-intro {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(36px, 8vw, 130px);
  align-items: end;
  margin-bottom: clamp(54px, 7vw, 96px);
}

.property-details-intro h2 {
  max-width: 16ch;
  margin-top: 14px;
  color: var(--foreground);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.2vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
  text-wrap: balance;
}

.property-details-intro > p {
  max-width: 42ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  text-wrap: pretty;
}

.property-details-grid,
.property-details-grid--four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(40px, 7vw, 110px);
}

.property-details-grid--four .detail-card:last-child,
.detail-card:last-child {
  grid-column: auto;
}

.property-details-grid:not(.property-details-grid--four) .detail-card:last-child {
  grid-column: 1 / -1;
  min-height: 0;
}

.property-details-grid:not(.property-details-grid--four) .detail-card:last-child ul {
  columns: 2;
  column-gap: clamp(40px, 7vw, 110px);
}

.detail-card {
  min-height: 340px;
  padding: 30px 0 46px;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.detail-number {
  color: var(--accent);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
}

.detail-card h3 {
  margin-top: 22px;
  color: var(--foreground);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.4vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.detail-card p,
.detail-card li {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.detail-card li::before {
  width: 4px;
  height: 4px;
  background: var(--accent);
}

.property-lifestyle {
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(38px, 8vw, 130px);
  margin-top: clamp(60px, 8vw, 120px);
  padding: clamp(44px, 6vw, 82px) 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.property-lifestyle > p {
  color: var(--foreground);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4.9rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.property-lifestyle strong {
  color: var(--foreground);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.25;
}

.property-lifestyle span,
.listing-contact small {
  color: var(--muted);
  line-height: 1.7;
}

.listing-links {
  gap: 8px;
}

.listing-links a {
  min-height: 48px;
  border-color: var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--foreground);
}

.listing-links a:first-child,
.listing-links a:nth-child(2) {
  border-color: var(--foreground);
  background: var(--foreground);
  color: var(--surface);
}

.listing-links a:hover,
.listing-links a:focus-visible {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--foreground);
}

.investment-report {
  order: 6;
  gap: clamp(44px, 7vw, 110px);
  margin-top: clamp(96px, 12vw, 190px);
  padding: clamp(54px, 7vw, 100px);
  border: 0;
  border-radius: 20px;
  background: var(--foreground);
  box-shadow: var(--shadow-md);
  color: var(--surface);
}

.investment-report .eyebrow {
  color: var(--accent-soft);
}

.report-copy h2 {
  max-width: 13ch;
  color: var(--surface);
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.8vw, 5.7rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.99;
}

.report-introduction,
.report-deliverables p,
.report-note small {
  color: oklch(0.79 0.017 82);
}

.report-deliverables li {
  border-color: oklch(0.44 0.025 246);
}

.report-deliverables li > span {
  color: var(--accent-soft);
}

.report-deliverables strong,
.report-note strong {
  color: var(--surface);
}

.report-note {
  border: 1px solid oklch(0.46 0.035 246);
  border-radius: 10px;
  background: var(--ink-soft);
}

.lead-form {
  top: 114px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 28px 80px oklch(0.12 0.025 246 / 0.2);
  color: var(--foreground);
}

.lead-form .eyebrow {
  color: var(--accent);
}

.lead-form-heading h3 {
  color: var(--foreground);
  font-family: var(--font-display);
  font-weight: 400;
}

.lead-form-heading > p:last-child,
.lead-form-consent,
.lead-form-status,
.privacy-details {
  color: var(--muted) !important;
}

.lead-form label {
  color: var(--foreground);
}

.lead-form label small {
  color: var(--muted);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  border-color: var(--line);
  background: var(--background);
  color: var(--foreground);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: oklch(0.55 0.017 246);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px oklch(0.62 0.082 72 / 0.12);
}

.privacy-details {
  border-color: var(--line);
  background: var(--background);
}

.privacy-details summary {
  color: var(--foreground);
}

.privacy-details a {
  color: var(--foreground);
}

.lead-form-submit {
  min-height: 52px;
  border-radius: 999px;
  background: var(--foreground);
  color: var(--surface);
}

.lead-form-status[data-state="success"] {
  color: var(--success);
}

.lead-form-status[data-state="error"] {
  color: var(--error);
}

.floating-report-cta {
  min-height: 54px;
  border-color: var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  color: var(--foreground);
  animation: none;
}

.floating-report-cta::before {
  display: none;
}

.floating-report-cta > span:last-child {
  background: var(--foreground);
  color: var(--surface);
}

.floating-report-cta:hover,
.floating-report-cta:focus-visible {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.gallery-footer {
  order: 7;
  margin-top: 40px;
  padding: 34px 0 0;
  border-color: var(--line);
}

.gallery-footer p {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.gallery-footer button {
  min-height: 48px;
  border-color: var(--foreground);
  border-radius: 999px;
  background: var(--foreground);
  color: var(--surface);
}

.gallery-footer button:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--foreground);
}

.panorama-section,
.panorama-canvas {
  background: oklch(0.16 0.025 246);
}

.viewer-heading h1 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.panorama-switcher {
  border: 1px solid var(--line);
  background: var(--glass);
  box-shadow: var(--shadow-md);
  color: var(--foreground);
}

.panorama-switcher button {
  border-right: 1px solid var(--line);
  color: var(--foreground);
}

.panorama-switcher button:last-child {
  border-right: 0;
}

.panorama-switcher button:hover:not(:disabled) {
  background: var(--surface-soft);
}

.panorama-switcher button.is-active {
  background: var(--accent-soft);
  color: var(--foreground);
}

.panorama-switcher small {
  color: var(--muted);
}

.site-header.is-over-panorama {
  border-color: oklch(0.42 0.02 246);
  background: oklch(0.19 0.03 246 / 0.92);
}

.site-header.is-over-panorama .brand strong,
.site-header.is-over-panorama .section-switcher button,
.site-header.is-over-panorama .section-switcher .header-anchor,
.site-header.is-over-panorama .header-phone {
  color: oklch(0.96 0.012 82);
}

.site-header.is-over-panorama .section-switcher button.is-active {
  background: oklch(0.96 0.012 82);
  color: var(--foreground);
}

.lightbox {
  background: oklch(0.13 0.022 246 / 0.96);
}

.lightbox-close,
.lightbox-arrow {
  border-color: oklch(0.42 0.02 246);
  background: oklch(0.22 0.025 246);
  color: oklch(0.96 0.012 82);
}

@media (max-width: 1100px) {
  .site-header {
    width: min(calc(100% - 28px), 1760px);
  }

  .header-phone {
    display: none;
  }

  .gallery-intro,
  .property-details-intro {
    grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.75fr);
    gap: 44px;
  }

  .gallery-grid[data-filter="all"] {
    grid-template-rows: minmax(290px, 1.7fr) minmax(170px, 0.9fr);
    height: clamp(500px, 58vw, 650px);
  }

  .property-overview {
    grid-template-columns: 1fr;
  }

  .property-facts div:first-child {
    border-left: 0;
  }

  .investment-report {
    grid-template-columns: 1fr;
  }

  .lead-form {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    grid-template-columns: auto 1fr auto;
    gap: 6px;
    width: calc(100% - 20px);
    min-height: 58px;
    padding: 6px;
    border-radius: 18px;
  }

  .brand {
    min-height: 44px;
    padding: 0;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand span:last-child,
  .section-switcher .header-anchor {
    display: none;
  }

  .section-switcher {
    gap: 2px;
  }

  .section-switcher button {
    min-height: 40px;
    padding: 0 11px;
    font-size: 0.68rem;
  }

  .header-actions {
    gap: 0;
  }

  .language-switcher {
    padding: 2px;
  }

  .language-switcher button {
    min-width: 34px;
    min-height: 36px;
  }

  .gallery-section {
    padding: 112px 10px 40px;
  }

  .gallery-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 8px 38px;
  }

  .gallery-intro h1 {
    max-width: 13ch;
    font-size: clamp(2.75rem, 12.8vw, 4.1rem);
    line-height: 1;
  }

  .gallery-summary {
    max-width: 40ch;
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .gallery-grid[data-filter="all"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: minmax(255px, 68vw) repeat(2, minmax(120px, 34vw));
    gap: 4px;
    height: auto;
    border-radius: 12px;
  }

  .gallery-grid[data-filter="all"] .gallery-card:nth-child(1) {
    grid-area: 1 / 1 / 2 / 3;
  }

  .gallery-grid[data-filter="all"] .gallery-card:nth-child(2) {
    grid-area: 2 / 1 / 3 / 2;
  }

  .gallery-grid[data-filter="all"] .gallery-card:nth-child(3) {
    grid-area: 2 / 2 / 3 / 3;
  }

  .gallery-grid[data-filter="all"] .gallery-card:nth-child(4) {
    grid-area: 3 / 1 / 4 / 2;
  }

  .gallery-grid[data-filter="all"] .gallery-card:nth-child(5) {
    grid-area: 3 / 2 / 4 / 3;
  }

  .gallery-grid:not([data-filter="all"]) {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .gallery-card-meta {
    right: 13px;
    bottom: 12px;
    left: 13px;
  }

  .gallery-grid[data-filter="all"] .gallery-card:not(.gallery-card-all) .gallery-card-meta,
  .gallery-grid[data-filter="all"] .gallery-card:not(.gallery-card-all)::after {
    opacity: 0;
  }

  .gallery-card-all .gallery-card-meta small {
    display: none;
  }

  .gallery-card-all .gallery-card-meta strong {
    font-size: 1.05rem;
    line-height: 1.15;
  }

  .property-overview {
    gap: 28px;
    margin: 20px 8px 0;
    padding: 26px 0;
  }

  .property-price strong {
    font-size: 2.55rem;
  }

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

  .property-facts div,
  .property-facts div:first-child {
    padding: 2px 14px;
    border-left: 1px solid var(--line);
  }

  .property-facts div:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .gallery-toolbar {
    padding: 20px 4px 0;
  }

  .gallery-filters button {
    min-height: 40px;
  }

  .property-details {
    margin: 86px 8px 0;
    padding-top: 50px;
  }

  .property-details-intro {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 48px;
  }

  .property-details-intro h2 {
    max-width: 13ch;
    font-size: clamp(2.65rem, 11.5vw, 3.8rem);
  }

  .property-details-intro > p {
    font-size: 0.92rem;
  }

  .property-details-grid,
  .property-details-grid--four {
    grid-template-columns: 1fr;
  }

  .detail-card,
  .detail-card:last-child {
    min-height: 0;
    padding: 26px 0 38px;
  }

  .property-details-grid:not(.property-details-grid--four) .detail-card:last-child ul {
    columns: 1;
  }

  .property-lifestyle {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 60px;
    padding: 44px 0;
  }

  .property-lifestyle > p {
    font-size: clamp(2.3rem, 10.5vw, 3.5rem);
  }

  .investment-report {
    margin: 86px 0 0;
    padding: 44px 20px 22px;
    border-radius: 14px;
  }

  .report-copy h2 {
    font-size: clamp(2.7rem, 12vw, 3.8rem);
  }

  .lead-form {
    margin: 12px -8px 0;
    padding: 28px 18px;
    border-radius: 12px;
  }

  .floating-report-cta {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
  }

  .gallery-footer {
    margin: 32px 8px 0;
  }
}

@media (hover: none) {
  .gallery-grid[data-filter="all"] .gallery-card:not(.gallery-card-all) .gallery-card-meta,
  .gallery-grid[data-filter="all"] .gallery-card:not(.gallery-card-all)::after {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
