:root {
  --bg: #f4f4f4;
  --white: #ffffff;
  --text: #222222;
  --muted: #777777;
  --line: #e8e8e8;
  --black: #0d0e10;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body.photo-lightbox-open {
  overflow: hidden;
  touch-action: none;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  background-image: radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.75), transparent 32%),
    radial-gradient(circle at 80% 12%, rgba(222, 228, 238, 0.4), transparent 28%);
}

.app-shell {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 100vh;
  width: 100%;
}

.sidebar {
  background: #151515;
  color: #f8f8f8;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 168px;
  color: #fff;
  text-decoration: none;
}

.brand img {
  width: auto;
  max-width: 100%;
  max-height: 108px;
  height: auto;
  display: block;
  object-fit: contain;
}

.main-nav {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.main-nav a {
  color: #d2d2d2;
  text-decoration: none;
}

.main-nav a.active {
  color: #ffffff;
}

.sidebar-cta {
  margin-top: auto;
}

.sidebar-cta p {
  color: #b5bac3;
}

.sidebar-cta a {
  display: inline-block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  color: #1d1d1d;
  background: #fff;
  border-radius: 10px;
  padding: 12px 10px;
  font-weight: 600;
}

.content {
  padding: 22px 28px 40px;
  min-width: 0;
}

.hero,
.about-top {
  background: #ededed;
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 22px;
}

h1 {
  margin: 0;
  font-size: 44px;
  letter-spacing: -1px;
}

.hero p,
.about-top p {
  color: #666;
  margin-top: 10px;
  max-width: 620px;
}

.search {
  margin-top: 16px;
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  width: 100%;
  max-width: 460px;
}

.search input {
  border: none;
  padding: 12px 14px;
  min-width: 0;
  width: 100%;
  outline: none;
}

.search button {
  border: none;
  background: #fff;
  width: 46px;
  cursor: pointer;
  color: #666;
}

h2 {
  font-size: 24px;
  margin: 0 0 14px;
}

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

.location-grid article,
.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease, border-color 260ms ease;
}

.location-grid img,
.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.location-grid article div {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
}

.location-grid .location-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.location-grid .location-card-link div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
}

.location-arrow {
  color: #444;
  font-weight: 600;
}

.location-grid article a {
  text-decoration: none;
  color: #444;
}

.property-list {
  margin-top: 26px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.chips {
  display: flex;
  gap: 8px;
}

.chips button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 8px 14px;
  cursor: pointer;
}

.chips button.active {
  background: var(--black);
  color: #fff;
}

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

.card h3 {
  margin: 0;
}

.card p {
  color: #666;
  margin: 8px 0 0;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.card .meta-row,
.card > p {
  padding: 0 14px 0;
}

.card > p {
  padding-bottom: 14px;
}

.hero-image {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
}

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

.top-search {
  margin-top: 0;
}

.about-cards {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dark-card,
.light-card {
  border-radius: 12px;
  padding: 20px;
}

.dark-card {
  background: #0f1014;
  color: #fff;
}

.light-card {
  background: #ececec;
}

.offer-grid {
  margin-top: 26px;
}

.offer-grid > div {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.offer-grid p {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px 14px;
  margin: 0;
  text-align: center;
  min-height: 92px;
  display: grid;
  place-items: center;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 240ms ease;
}

.listing-head {
  margin-bottom: 16px;
}

.back-link {
  color: #7b7b7b;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 16px;
}

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

.listing-title-row p {
  margin: 6px 0 0;
  color: #666;
}

.listing-title-row strong {
  background: #ececec;
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 32px;
}

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

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}

.location-photo-gallery {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 16px 14px;
  margin-top: 4px;
}

.location-photo-gallery:focus-visible {
  outline: 2px solid #111;
  outline-offset: 3px;
}

.location-gallery-heading {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}

.location-gallery-hint {
  margin: 0 0 14px;
  font-size: 14px;
  color: #666;
  line-height: 1.45;
}

.gallery-stage {
  position: relative;
  max-width: 960px;
  margin-inline: auto;
}

.gallery-figure {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: min(100%, calc(min(60vh, 560px) * 4 / 3));
  margin-inline: auto;
  aspect-ratio: 4 / 3;
  height: auto;
  min-height: 200px;
  border-radius: 12px;
  overflow: hidden;
  background: #e4e4e4;
  pointer-events: none;
}

.gallery-main-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: auto;
  cursor: zoom-in;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  pointer-events: auto;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: #222;
  display: grid;
  place-items: center;
  padding: 0;
  touch-action: manipulation;
  box-shadow: 0 4px 14px rgba(20, 24, 33, 0.12);
}

.gallery-prev {
  left: 10px;
}

.gallery-next {
  right: 10px;
}

.gallery-arrow:hover {
  background: #f4f4f4;
}

.gallery-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 10px;
}

.gallery-nav-btn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  min-height: 40px;
  padding: 8px 14px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  cursor: pointer;
  touch-action: manipulation;
}

.gallery-nav-btn:hover {
  background: #f4f4f4;
}

.gallery-count {
  margin: 0;
  font-size: 14px;
  color: #666;
  font-weight: 600;
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  max-width: 960px;
  margin-inline: auto;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
  scrollbar-width: thin;
}

.gallery-thumb {
  display: block;
  flex: 0 0 148px;
  width: 148px;
  min-width: 148px;
  scroll-snap-align: center;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 4px;
  background: #fff;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 1px 0 rgba(20, 24, 33, 0.06);
  transition: border-color 160ms ease, box-shadow 160ms ease;
  touch-action: manipulation;
}

.gallery-thumb.is-active {
  border-color: #111;
  box-shadow: 0 8px 22px rgba(20, 24, 33, 0.12);
}

.gallery-thumb-frame {
  display: block;
  width: 100%;
  min-width: 0;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  background: #ddd;
}

.gallery-thumb-frame img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  display: block;
}

.location-gallery-lead {
  margin-top: 18px;
  padding: 22px 20px;
  background: #151515;
  color: #f4f4f4;
  border-radius: 14px;
  text-align: center;
}

.location-gallery-lead h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.location-gallery-lead p {
  margin: 0 0 16px;
  color: #cfcfcf;
  line-height: 1.55;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.location-gallery-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 12px;
  background: #fff;
  color: #111;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.location-gallery-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.photo-lightbox[hidden] {
  display: none !important;
}

.photo-lightbox:not([hidden]) {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(10px, env(safe-area-inset-top)) max(10px, env(safe-area-inset-right)) max(10px, env(safe-area-inset-bottom))
    max(10px, env(safe-area-inset-left));
}

.photo-lightbox-scrim {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(10, 10, 12, 0.9);
  cursor: pointer;
}

.photo-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(96vw, 1120px);
  max-height: min(92dvh, 900px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}

.photo-lightbox-close,
.photo-lightbox-img,
.photo-lightbox-count,
.photo-lightbox-nav {
  pointer-events: auto;
}

.photo-lightbox-close {
  align-self: flex-end;
  min-height: 44px;
  min-width: 44px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.photo-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.photo-lightbox-img {
  display: block;
  width: min(92vw, calc(min(72dvh, 640px) * 4 / 3));
  max-width: 92vw;
  max-height: min(72dvh, 640px);
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #0a0a0c;
  border-radius: 10px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.45);
}

.photo-lightbox-count {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #e8e8e8;
}

.photo-lightbox-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  width: 100%;
}

.photo-lightbox-arrow {
  min-width: 48px;
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  touch-action: manipulation;
}

.photo-lightbox-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
}

.facts-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.facts-grid article {
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 16px;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease;
}

.facts-grid p {
  color: #7f7f7f;
  margin: 0 0 8px;
}

.facts-grid h3 {
  margin: 0;
  font-size: 34px;
}

.description {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
}

.description p {
  color: #666;
  line-height: 1.6;
}

.agent-card {
  border-radius: 12px;
  background: #ededed;
  padding: 20px;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 240ms ease;
}

.agent-card p {
  margin: 0;
  color: #8c8c8c;
}

.agent-card h3 {
  margin: 8px 0 4px;
}

.agent-card button,
.agent-card a.agent-tour-link {
  display: inline-block;
  margin-top: 14px;
  border: none;
  background: #111111;
  color: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  font: inherit;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.agent-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 12px;
}

.agent-card img.agent-card-logo {
  object-fit: contain;
  background: #1a1a1a;
  padding: 16px;
}

.facts-grid h3 a.facts-inline-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-wrap {
  max-width: 700px;
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 240ms ease;
}

.featured-workspaces {
  margin-top: 26px;
}

.featured-workspaces-link {
  margin: 14px 0 0;
  text-align: center;
}

.featured-workspaces-link a {
  color: #222;
  font-weight: 600;
  text-decoration: none;
}

.featured-workspaces-link a:hover {
  text-decoration: underline;
}

.info-section {
  margin-top: 26px;
}

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

.info-grid article,
.terms-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}

.info-grid h3 {
  margin: 0 0 8px;
}

.info-grid p {
  margin: 0;
  color: #666;
}

.terms-grid p {
  margin: 0;
  color: #7a7a7a;
}

.terms-grid strong {
  display: block;
  margin-top: 8px;
}

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

.amenities-list span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-list p {
  margin: 10px 0 0;
  color: #666;
}

.site-footer {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.site-footer a {
  color: #4a4a4a;
  text-decoration: none;
  font-size: 14px;
}

.contact-wrap p {
  color: #666;
}

.contact-form {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  font: inherit;
  width: 100%;
}

.contact-form button {
  border: none;
  background: #111;
  color: #fff;
  border-radius: 10px;
  padding: 12px 20px;
  justify-self: start;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.2);
}

.contact-form .optional-hint {
  font-weight: 400;
  font-size: 0.9em;
  color: #666;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-form button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.contact-form-status {
  margin: 0;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.45;
}

.contact-form-status.is-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.contact-form-status.is-success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.location-grid article:hover,
.card:hover,
.facts-grid article:hover,
.offer-grid p:hover,
.agent-card:hover,
.contact-wrap:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(20, 24, 33, 0.12);
}

.reveal {
  opacity: 0;
  transform: translateY(16px) scale(0.992);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  pointer-events: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.motion-card {
  transform-style: preserve-3d;
  will-change: transform;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
}

.motion-card.is-tilting {
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-2px);
  box-shadow: 0 16px 30px rgba(13, 15, 20, 0.14);
}

.cards .card:nth-child(odd) {
  animation: floatCardA 6.5s ease-in-out infinite;
}

.cards .card:nth-child(even) {
  animation: floatCardB 7.2s ease-in-out infinite;
}

@keyframes floatCardA {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes floatCardB {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible,
  .cards .card:nth-child(odd),
  .cards .card:nth-child(even),
  .motion-card,
  .motion-card.is-tilting,
  .location-grid article,
  .card,
  .facts-grid article,
  .offer-grid p,
  .agent-card,
  .contact-wrap,
  .contact-form button {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

@media (max-width: 1100px) {
  .app-shell {
    grid-template-columns: 180px 1fr;
  }

  .sidebar {
    padding: 16px 14px;
  }

  .brand {
    max-width: 118px;
  }

  .brand img {
    max-height: 92px;
  }

  .main-nav a,
  .sidebar-cta p,
  .sidebar-cta a {
    font-size: 12px;
  }

  h1 {
    font-size: 34px;
  }

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

@media (max-width: 860px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
    padding: 14px 16px;
  }

  .brand {
    max-width: 120px;
    flex: 1 1 100%;
  }

  .brand img {
    max-height: 80px;
  }

  .main-nav {
    display: flex;
    gap: 8px;
    width: 100%;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .main-nav a {
    white-space: nowrap;
    font-size: 12px;
    padding: 7px 10px;
    border: 1px solid #2a2a2a;
    border-radius: 999px;
    background: #1b1b1b;
  }

  .sidebar-cta {
    margin-top: 0;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .sidebar-cta p {
    margin: 0;
    font-size: 12px;
    display: none;
  }

  .sidebar-cta a {
    width: auto;
    padding: 9px 12px;
    font-size: 12px;
  }

  .content {
    padding: 16px 14px 28px;
  }

  h1 {
    font-size: 24px;
    line-height: 1.2;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .chips {
    flex-wrap: wrap;
  }

  .chips button {
    padding: 7px 11px;
    font-size: 12px;
  }

  .about-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-search {
    width: 100%;
  }

  .locations .location-grid,
  .cards,
  .description,
  .facts-grid,
  .about-cards,
  .gallery-grid,
  .info-grid,
  .terms-grid,
  .amenities-list {
    grid-template-columns: 1fr;
  }

  .card img,
  .gallery-grid img,
  .hero-image,
  .location-grid img {
    height: 200px;
  }

  .gallery-figure {
    max-width: min(100%, calc(min(48vh, 400px) * 4 / 3));
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 180px;
  }

  .gallery-thumb {
    flex-basis: 120px;
    width: 120px;
    min-width: 120px;
  }

  .gallery-arrow {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .photo-lightbox-img {
    width: min(92vw, calc(min(66dvh, 520px) * 4 / 3));
    max-width: 92vw;
    max-height: min(66dvh, 520px);
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .meta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .listing-title-row {
    flex-direction: column;
    gap: 10px;
  }

  .listing-title-row strong {
    font-size: 24px;
  }

  .facts-grid h3 {
    font-size: 24px;
  }

  .site-footer {
    gap: 8px 10px;
  }

  .site-footer a {
    font-size: 12px;
  }

  .motion-card,
  .motion-card.is-tilting {
    transform: none !important;
  }
}

@media (hover: none) and (pointer: coarse) {
  .location-grid article:hover,
  .card:hover,
  .facts-grid article:hover,
  .offer-grid p:hover,
  .agent-card:hover,
  .contact-wrap:hover {
    transform: none;
    box-shadow: none;
  }
}
