:root {
      --background: #f5f8fc;
      --background-soft: #eef5ff;
      --card: #ffffff;
      --text: #152238;
      --muted: #657089;
      --line: #d8e3f0;
      --primary: #1268d8;
      --primary-dark: #0a479b;
      --primary-soft: #e9f2ff;
      --green: #16844b;
      --green-soft: #e8f8ef;
      --orange: #b65b00;
      --orange-soft: #fff1df;
      --red: #a52a2a;
      --red-soft: #fdecec;
      --shadow: 0 18px 50px rgba(20, 43, 82, 0.09);
      --shadow-strong: 0 25px 70px rgba(14, 55, 120, 0.16);
      --radius-large: 28px;
      --radius: 20px;
      --container: 1220px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      overflow-x: hidden;
      font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
      color: var(--text);
      background:
        radial-gradient(
          900px 600px at 5% 0%,
          rgba(116, 178, 255, 0.2),
          transparent 65%
        ),
        radial-gradient(
          800px 550px at 100% 30%,
          rgba(174, 213, 255, 0.24),
          transparent 65%
        ),
        linear-gradient(
          180deg,
          #fbfdff 0%,
          var(--background) 52%,
          #eef5ff 100%
        );
      line-height: 1.55;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      opacity: 0.32;
      background-image:
        radial-gradient(circle at 20% 20%, #b2d3ff 0 3px, transparent 4px),
        radial-gradient(circle at 70% 15%, #c3ddff 0 2px, transparent 3px),
        radial-gradient(circle at 85% 70%, #bdd9ff 0 3px, transparent 4px);
      background-size: 180px 180px, 220px 220px, 260px 260px;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

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

    .container {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 1px solid rgba(216, 227, 240, 0.8);
      background: rgba(255, 255, 255, 0.87);
      backdrop-filter: blur(16px);
    }

    .topbar-inner {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: #09234b;
      font-weight: 900;
      letter-spacing: -0.025em;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 13px;
      color: #fff;
      background: linear-gradient(145deg, #1680ef, #073c91);
      box-shadow: 0 10px 24px rgba(10, 93, 197, 0.25);
    }

    .navigation {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .nav-link {
      display: inline-flex;
      min-height: 42px;
      align-items: center;
      justify-content: center;
      padding: 0 15px;
      border-radius: 999px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
      transition:
        transform 0.18s ease,
        color 0.18s ease,
        background 0.18s ease;
    }

    .nav-link:hover {
      color: var(--primary);
      background: var(--primary-soft);
      transform: translateY(-1px);
    }

    .nav-link.primary {
      color: #fff;
      background: var(--primary);
      box-shadow: 0 10px 25px rgba(18, 104, 216, 0.23);
    }

    .nav-link.primary:hover {
      color: #fff;
      background: var(--primary-dark);
    }

    .hero {
      padding: 80px 0 62px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      gap: 42px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 17px;
      padding: 8px 14px;
      border: 1px solid #cfe2ff;
      border-radius: 999px;
      color: var(--primary);
      background: rgba(233, 242, 255, 0.92);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .hero h1 {
      margin: 0;
      font-size: clamp(42px, 7vw, 74px);
      line-height: 0.99;
      letter-spacing: -0.055em;
    }

    .hero h1 span {
      color: var(--primary);
    }

    .hero-lead {
      max-width: 720px;
      margin: 24px 0 0;
      color: var(--muted);
      font-size: clamp(18px, 2vw, 21px);
      line-height: 1.68;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 29px;
    }

    .button {
      display: inline-flex;
      min-height: 50px;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 0 21px;
      border: 0;
      border-radius: 13px;
      cursor: pointer;
      font-weight: 900;
      transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease;
    }

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

    .button.primary {
      color: #fff;
      background: var(--primary);
      box-shadow: 0 14px 30px rgba(18, 104, 216, 0.24);
    }

    .button.primary:hover {
      background: var(--primary-dark);
    }

    .button.secondary {
      color: var(--primary);
      border: 1px solid #cbdcf3;
      background: rgba(255, 255, 255, 0.88);
    }

    .button.full {
      width: 100%;
    }

    .hero-card {
      padding: 30px;
      border: 1px solid var(--line);
      border-radius: var(--radius-large);
      background: rgba(255, 255, 255, 0.92);
      box-shadow: var(--shadow-strong);
    }

    .hero-card-label {
      color: var(--primary);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .guarantee-amount {
      margin: 12px 0 8px;
      color: #09234b;
      font-size: clamp(35px, 6vw, 58px);
      font-weight: 950;
      line-height: 1;
      letter-spacing: -0.05em;
    }

    .hero-card-text {
      margin: 0;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.65;
    }

    .hero-benefits {
      display: grid;
      gap: 12px;
      margin-top: 24px;
    }

    .hero-benefit {
      display: flex;
      gap: 11px;
      align-items: flex-start;
      padding: 13px 14px;
      border: 1px solid #e2e9f4;
      border-radius: 14px;
      background: #f9fbff;
    }

    .check {
      width: 22px;
      height: 22px;
      flex: 0 0 22px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 1px;
      border-radius: 50%;
      color: #fff;
      background: var(--primary);
      font-size: 13px;
      font-weight: 900;
    }

    .section {
      padding: 70px 0;
    }

    .section.soft {
      background: rgba(235, 244, 255, 0.64);
      border-top: 1px solid rgba(216, 227, 240, 0.8);
      border-bottom: 1px solid rgba(216, 227, 240, 0.8);
    }

    .section-header {
      max-width: 820px;
      margin-bottom: 34px;
    }

    .section-header.center {
      margin-right: auto;
      margin-left: auto;
      text-align: center;
    }

    .section-header h2 {
      margin: 0;
      font-size: clamp(32px, 5vw, 52px);
      line-height: 1.06;
      letter-spacing: -0.045em;
    }

    .section-header p {
      margin: 16px 0 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.7;
    }

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

    .benefit-card {
      padding: 25px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.92);
      box-shadow: var(--shadow);
    }

    .benefit-icon {
      width: 48px;
      height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 19px;
      border-radius: 15px;
      color: var(--primary);
      background: var(--primary-soft);
      font-size: 24px;
      font-weight: 900;
    }

    .benefit-card h3 {
      margin: 0 0 9px;
      font-size: 20px;
      letter-spacing: -0.025em;
    }

    .benefit-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
    }

    .property-controls {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 15px;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }

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

    .filter-button {
      min-height: 42px;
      padding: 0 15px;
      border: 1px solid var(--line);
      border-radius: 999px;
      cursor: pointer;
      color: var(--muted);
      background: rgba(255, 255, 255, 0.86);
      font-weight: 800;
    }

    .filter-button.active {
      color: #fff;
      border-color: var(--primary);
      background: var(--primary);
    }

    .property-count {
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
    }

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

    .property-card {
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius-large);
      background: rgba(255, 255, 255, 0.94);
      box-shadow: var(--shadow);
    }

    .property-gallery {
      position: relative;
      overflow: hidden;
      aspect-ratio: 16 / 10;
      background: #e9eef6;
    }

    .property-main-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      cursor: zoom-in;
    }

    .status-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      z-index: 3;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 12px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 900;
      box-shadow: 0 10px 24px rgba(8, 28, 62, 0.15);
    }

    .status-available {
      color: var(--green);
      background: var(--green-soft);
    }

    .status-reserved {
      color: var(--orange);
      background: var(--orange-soft);
    }

    .status-rented {
      color: var(--red);
      background: var(--red-soft);
    }

    .gallery-counter {
      position: absolute;
      right: 16px;
      bottom: 16px;
      z-index: 3;
      padding: 7px 10px;
      border-radius: 999px;
      color: #fff;
      background: rgba(7, 20, 44, 0.72);
      backdrop-filter: blur(8px);
      font-size: 12px;
      font-weight: 800;
    }

    .gallery-arrow {
      position: absolute;
      top: 50%;
      z-index: 3;
      width: 42px;
      height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transform: translateY(-50%);
      border: 1px solid rgba(255, 255, 255, 0.4);
      border-radius: 50%;
      cursor: pointer;
      color: #fff;
      background: rgba(4, 18, 43, 0.6);
      backdrop-filter: blur(8px);
      font-size: 22px;
    }

    .gallery-arrow.previous {
      left: 14px;
    }

    .gallery-arrow.next {
      right: 14px;
    }

    .property-content {
      padding: 25px;
    }

    .property-location {
      color: var(--primary);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .property-title {
      margin: 7px 0 8px;
      font-size: 28px;
      line-height: 1.15;
      letter-spacing: -0.035em;
    }

    .property-description {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
    }

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

    .fact {
      padding: 12px;
      border: 1px solid #e0e8f3;
      border-radius: 13px;
      background: #f9fbff;
    }

    .fact-label {
      display: block;
      color: var(--muted);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .fact-value {
      display: block;
      margin-top: 4px;
      color: var(--text);
      font-size: 15px;
      font-weight: 900;
    }

    .availability {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 15px;
      padding: 15px 16px;
      border: 1px solid #d8e5f5;
      border-radius: 15px;
      background: var(--primary-soft);
    }

    .availability-label {
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .availability-date {
      margin-top: 3px;
      color: var(--primary-dark);
      font-size: 17px;
      font-weight: 900;
    }

    .property-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 18px;
    }

    .property-actions .button {
      flex: 1;
    }

    .calendar-card {
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: var(--radius-large);
      background: rgba(255, 255, 255, 0.94);
      box-shadow: var(--shadow);
    }

    .calendar-layout {
      display: grid;
      grid-template-columns: 1fr 0.85fr;
      gap: 28px;
      align-items: start;
    }

    .calendar-toolbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 20px;
    }

    .calendar-title {
      font-size: 24px;
      font-weight: 900;
      letter-spacing: -0.025em;
    }

    .calendar-nav {
      display: flex;
      gap: 8px;
    }

    .calendar-nav button {
      width: 40px;
      height: 40px;
      border: 1px solid var(--line);
      border-radius: 12px;
      cursor: pointer;
      color: var(--primary);
      background: #fff;
      font-weight: 900;
    }

    .calendar-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 7px;
    }

    .weekday {
      padding: 8px 3px;
      color: var(--muted);
      text-align: center;
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .calendar-day {
      position: relative;
      min-height: 64px;
      padding: 8px;
      border: 1px solid #e1e8f2;
      border-radius: 12px;
      background: #fbfcff;
      font-size: 13px;
      font-weight: 800;
    }

    .calendar-day.empty {
      border-color: transparent;
      background: transparent;
    }

    .calendar-day.today {
      border-color: var(--primary);
      background: var(--primary-soft);
    }

    .calendar-event-dot {
      position: absolute;
      right: 7px;
      bottom: 7px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--primary);
    }

    .calendar-legend {
      display: grid;
      gap: 13px;
    }

    .calendar-property {
      padding: 17px;
      border: 1px solid #e1e8f2;
      border-radius: 15px;
      background: #f9fbff;
    }

    .calendar-property strong {
      display: block;
      margin-bottom: 5px;
    }

    .calendar-property span {
      color: var(--muted);
      font-size: 14px;
    }

    .calendar-property-date {
      margin-top: 8px;
      color: var(--primary);
      font-weight: 900;
    }

    .request-layout {
      display: grid;
      grid-template-columns: 0.82fr 1.18fr;
      gap: 28px;
      align-items: start;
    }

    .request-copy {
      padding: 28px;
      border: 1px solid #cfe1f9;
      border-radius: var(--radius-large);
      background: linear-gradient(145deg, #eaf3ff, #ffffff);
      box-shadow: var(--shadow);
    }

    .request-copy h2 {
      margin: 0 0 13px;
      font-size: clamp(30px, 5vw, 46px);
      line-height: 1.05;
      letter-spacing: -0.04em;
    }

    .request-copy p {
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
    }

    .request-list {
      display: grid;
      gap: 11px;
      margin-top: 23px;
    }

    .request-list-item {
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }

    .request-form {
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: var(--radius-large);
      background: rgba(255, 255, 255, 0.95);
      box-shadow: var(--shadow);
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    .field label {
      color: #35445d;
      font-size: 13px;
      font-weight: 900;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      min-height: 46px;
      padding: 11px 13px;
      border: 1px solid #cfd9e7;
      border-radius: 12px;
      outline: none;
      color: var(--text);
      background: #fff;
    }

    .field textarea {
      min-height: 130px;
      resize: vertical;
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(18, 104, 216, 0.09);
    }

    .form-note {
      margin: 14px 0 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.55;
    }

    .owner-cta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 25px;
      padding: 34px;
      border: 1px solid #bfd8fb;
      border-radius: var(--radius-large);
      background:
        radial-gradient(
          500px 250px at 100% 20%,
          rgba(85, 158, 255, 0.28),
          transparent 70%
        ),
        linear-gradient(135deg, #e8f2ff, #ffffff);
      box-shadow: var(--shadow);
    }

    .owner-cta h2 {
      margin: 0 0 9px;
      font-size: clamp(28px, 4vw, 42px);
      letter-spacing: -0.04em;
    }

    .owner-cta p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
    }

    .footer {
      padding: 29px 0;
      border-top: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.72);
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      color: var(--muted);
      font-size: 14px;
    }

    .footer-links {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }

    .footer a {
      color: var(--primary);
      font-weight: 800;
    }

    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 500;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: rgba(2, 11, 29, 0.9);
      backdrop-filter: blur(10px);
    }

    .lightbox.open {
      display: flex;
    }

    .lightbox img {
      max-width: min(1100px, 94vw);
      max-height: 90vh;
      border-radius: 20px;
      box-shadow: 0 30px 100px rgba(0, 0, 0, 0.55);
    }

    .lightbox-close {
      position: fixed;
      top: 22px;
      right: 22px;
      width: 46px;
      height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 255, 255, 0.35);
      border-radius: 50%;
      cursor: pointer;
      color: #fff;
      background: rgba(7, 24, 55, 0.75);
      font-size: 25px;
    }

    .empty-properties {
      grid-column: 1 / -1;
      padding: 40px;
      border: 1px dashed #bfd0e5;
      border-radius: 20px;
      color: var(--muted);
      background: rgba(255, 255, 255, 0.72);
      text-align: center;
    }

    @media (max-width: 1060px) {
      .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .hero-grid,
      .calendar-layout,
      .request-layout {
        grid-template-columns: 1fr;
      }

      .hero-card {
        max-width: 680px;
      }
    }

    @media (max-width: 820px) {
      .property-grid {
        grid-template-columns: 1fr;
      }

      .navigation .nav-link:not(.primary) {
        display: none;
      }

      .owner-cta {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 640px) {
      .container {
        width: min(var(--container), calc(100% - 24px));
      }

      .hero {
        padding-top: 52px;
      }

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

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

      .property-actions {
        flex-direction: column;
      }

      .calendar-card,
      .request-form,
      .request-copy {
        padding: 21px;
      }

      .calendar-day {
        min-height: 48px;
        padding: 5px;
        font-size: 11px;
      }

      .button.full-mobile {
        width: 100%;
      }
    }

@media (prefers-color-scheme: dark) {
  :root {
    --background: var(--tc-page, #0d111a);
    --background-soft: var(--tc-page-alt, #121927);
    --card: var(--tc-surface-solid, #151d2c);
    --text: var(--tc-text, #f2f5fb);
    --muted: var(--tc-text-muted, #aab5c8);
    --line: var(--tc-border, rgba(181, 198, 226, 0.16));
    --primary: var(--tc-primary, #72b4ff);
    --primary-dark: var(--tc-primary-hover, #98c9ff);
    --primary-soft: var(--tc-primary-soft, rgba(80, 145, 230, 0.16));
    --green: var(--tc-success, #5fd59a);
    --green-soft: var(--tc-success-soft, rgba(22, 132, 75, 0.18));
    --orange: var(--tc-warning, #ffb45a);
    --orange-soft: var(--tc-warning-soft, rgba(182, 91, 0, 0.2));
    --red: var(--tc-danger, #ff8a80);
    --red-soft: var(--tc-danger-soft, rgba(180, 35, 24, 0.2));
    --shadow: var(--tc-shadow, 0 20px 52px rgba(0, 0, 0, 0.28));
    --shadow-strong: var(--tc-shadow-lg, 0 28px 68px rgba(0, 0, 0, 0.38));
  }

  body {
    color: var(--text);
    background:
      radial-gradient(900px 600px at 5% 0%, rgba(70, 140, 230, 0.16), transparent 65%),
      radial-gradient(800px 550px at 100% 30%, rgba(130, 95, 205, 0.13), transparent 65%),
      linear-gradient(180deg, #0d111a 0%, #101827 52%, #121927 100%);
  }

  .topbar {
    border-color: var(--line);
    background: rgba(13, 17, 26, 0.9);
  }

  .brand,
  .hero h1,
  .section-header h2,
  .benefit-card h3,
  .property-title,
  .calendar-title,
  .calendar-property strong,
  .request-copy h2,
  .owner-cta h2,
  .field label {
    color: var(--text);
  }

  .hero-card,
  .benefit-card,
  .property-card,
  .calendar-card,
  .request-form {
    border-color: var(--line);
    background: rgba(20, 27, 41, 0.94);
  }

  .request-copy,
  .owner-cta {
    border-color: var(--line);
    background:
      radial-gradient(500px 250px at 100% 20%, rgba(80, 145, 230, 0.16), transparent 70%),
      linear-gradient(135deg, #151d2c, #111827);
  }

  .hero-benefit,
  .fact,
  .calendar-property {
    border-color: var(--line);
    background: #111827;
  }

  .availability {
    border-color: var(--line);
    background: var(--primary-soft);
  }

  .filter-button,
  .calendar-nav button,
  .button.secondary {
    color: var(--text);
    border-color: var(--line);
    background: var(--card);
  }

  .filter-button.active,
  .button.primary,
  .nav-link.primary {
    color: #ffffff;
    background: #2563eb;
  }

  .field input,
  .field select,
  .field textarea {
    color: var(--text);
    border-color: var(--line);
    background: #111827;
  }

  .field input::placeholder,
  .field textarea::placeholder {
    color: #8290a6;
  }

  .calendar-day {
    color: var(--text);
    border-color: var(--line);
    background: #111827;
  }

  .calendar-day.today {
    border-color: var(--primary);
    background: var(--primary-soft);
  }

  .weekday,
  .property-description,
  .hero-lead,
  .hero-card-text,
  .section-header p,
  .request-copy p,
  .owner-cta p,
  .form-note,
  .footer {
    color: var(--muted);
  }

  .property-gallery {
    background: #111827;
  }
}
