﻿:root {
      --dark: #0f1117;
      --dark-2: #1a1d2a;
      --gold: #c9a030;
      --text: #151821;
      --muted: #697386;
      --line: #e5e7eb;
      --soft: #f7f8fa;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Arial, sans-serif;
      color: var(--text);
      background: #ffffff;
    }

    .svg-sprite {
      position: absolute;
      width: 0;
      height: 0;
      overflow: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, opacity .2s ease;
    }

    button {
      border: 0;
      font: inherit;
      cursor: pointer;
      transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

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

    .wrap {
      width: min(1180px, calc(100% - 48px));
      margin: 0 auto;
    }

    .nav {
      position: fixed;
      inset: 0 0 auto;
      z-index: 50;
      background: var(--dark);
      color: #ffffff;
    }

    .nav-inner {
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      transition: color .2s ease, transform .2s ease;
    }

    a.logo:hover {
      color: var(--gold);
      transform: translateY(-1px);
    }

    .logo-mark {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 7px;
      background: var(--gold);
      color: var(--dark);
      font-size: 13px;
      font-weight: 900;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    a.logo:hover .logo-mark {
      transform: rotate(-3deg) scale(1.04);
      box-shadow: 0 10px 22px rgba(201, 160, 48, .25);
    }

    .logo small {
      display: block;
      color: var(--gold);
      font-size: 12px;
    }

    .nav-links {
      display: flex;
      gap: 26px;
    }

    .nav-links a {
      position: relative;
      color: #d8dde7;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .08em;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -8px;
      height: 2px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .22s ease;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
      color: #ffffff;
    }

    .nav-links a:hover::after,
    .nav-links a:focus-visible::after {
      transform: scaleX(1);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 12px 22px;
      border-radius: 7px;
      background: var(--gold);
      color: var(--dark);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .04em;
      box-shadow: 0 0 0 rgba(201, 160, 48, 0);
      transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .btn:hover,
    .btn:focus-visible {
      background: #dcb13f;
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(201, 160, 48, .28);
    }

    .btn-ghost {
      color: #000000;
      border: 1px solid rgba(255, 255, 255, .24);
    }

    .btn-ghost:hover,
    .btn-ghost:focus-visible {
      background: #dcb13f;
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(201, 160, 48, .28);
    }

    .menu-button {
      display: none;
      background: transparent;
      color: #ffffff;
      font-size: 28px;
    }

    .menu-button:hover,
    .menu-button:focus-visible {
      color: var(--gold);
      transform: translateY(-1px);
    }

    .mobile-menu {
      display: none;
      padding: 10px 24px 24px;
      background: var(--dark);
    }

    .mobile-menu.is-open {
      display: block;
    }

    .mobile-menu a {
      display: block;
      padding: 15px 0;
      color: #ffffff;
      border-top: 1px solid rgba(255, 255, 255, .1);
      font-weight: 800;
      letter-spacing: .08em;
    }

    .mobile-menu a:hover,
    .mobile-menu a:focus-visible {
      color: var(--gold);
      padding-left: 8px;
    }

    .hero {
      position: relative;
      min-height: 100vh;
      padding: 120px 0 150px;
      overflow: hidden;
      background: linear-gradient(135deg, var(--dark), var(--dark-2));
      color: #ffffff;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 50%, rgba(201, 160, 48, .16), transparent 42%),
        radial-gradient(circle at 80% 20%, rgba(201, 160, 48, .12), transparent 36%);
    }

    .hero-grid {
      position: relative;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      align-items: center;
      gap: 56px;
    }

    .hero h1 {
      margin: 22px 0;
      font-size: clamp(42px, 6vw, 72px);
      line-height: 1.02;
      font-weight: 900;
    }

    .hero em {
      color: var(--gold);
    }

    .lead {
      max-width: 540px;
      color: #c7ced9;
      line-height: 1.75;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 32px;
    }

    .agent-photo {
      position: relative;
      justify-self: end;
      width: min(390px, 100%);
    }

    .agent-photo img {
      width: 100%;
      height: 500px;
      object-fit: cover;
      object-position: top;
      border-radius: 18px;
    }

    .photo-badge {
      position: absolute;
      top: 16px;
      right: 16px;
      padding: 10px 13px;
      border-radius: 7px;
      background: var(--gold);
      color: var(--dark);
      font-size: 12px;
      font-weight: 900;
    }

    .hero-features {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, .42);
      border-top: 1px solid rgba(255, 255, 255, .09);
    }

    .hero-features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .feature-mini {
      display: flex;
      gap: 14px;
      padding: 24px;
      border-left: 1px solid rgba(255, 255, 255, .08);
    }

    .icon-box {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 8px;
      background: rgba(201, 160, 48, .16);
      border: 1px solid rgba(201, 160, 48, .28);
      color: var(--gold);
      font-weight: 900;
    }

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

    .feature-mini b {
      color: #ffffff;
      font-size: 12px;
      letter-spacing: .1em;
    }

    .feature-mini p {
      margin: 6px 0 0;
      color: #aeb6c3;
      font-size: 12px;
      line-height: 1.5;
    }

    .section {
      padding: 88px 0;
    }

    .section-dark {
      background: linear-gradient(135deg, var(--dark), var(--dark-2));
      color: #ffffff;
    }

    .section-soft {
      background: var(--soft);
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 24px;
      margin-bottom: 38px;
    }

    .kicker {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--gold);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    .kicker::before {
      content: "";
      width: 34px;
      height: 2px;
      background: var(--gold);
    }

    .section h2 {
      margin: 12px 0 0;
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.08;
      font-weight: 900;
    }

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

    .tab {
      padding: 11px 18px;
      border-radius: 7px;
      background: #eef0f4;
      color: var(--dark);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .08em;
    }

    .tab:hover,
    .tab:focus-visible {
      background: #e1e5eb;
      transform: translateY(-1px);
    }

    .tab.is-active {
      background: var(--gold);
    }

    .properties-grid,
    .process-grid,
    .values-grid {
      display: grid;
      gap: 24px;
    }

    .properties-grid,
    .process-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .values-grid {
      grid-template-columns: repeat(4, 1fr);
    }

    .property-card {
      cursor: pointer;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: #ffffff;
      max-height: 620px;
      opacity: 1;
      transform: translateY(0);
      transition: max-height .48s ease, opacity .32s ease, transform .32s ease, box-shadow .25s ease, border-color .25s ease;
    }

    .property-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 45px rgba(15, 17, 23, .12);
    }

    .property-card.is-filter-hidden {
      display: none;
    }

    .property-photo {
      position: relative;
      height: 225px;
      overflow: hidden;
      background: #dddddd;
    }

    .property-photo::before,
    .property-photo::after {
      content: "";
      position: absolute;
      opacity: 0;
      transition: opacity .24s ease, transform .24s ease;
      pointer-events: none;
    }

    .property-photo::before {
      inset: 0;
      z-index: 1;
      background: rgba(15, 17, 23, .34);
    }

    .property-photo::after {
      z-index: 2;
      left: 50%;
      top: 50%;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, .94);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 24 24' fill='none' stroke='%230f1117' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s4-7 10-7 10 7 10 7-4 7-10 7S2 12 2 12Z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
      background-position: center;
      background-repeat: no-repeat;
      transform: translate(-50%, -45%) scale(.9);
      box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
    }

    .property-card:hover .property-photo::before,
    .property-card:hover .property-photo::after {
      opacity: 1;
    }

    .property-card:hover .property-photo::after {
      transform: translate(-50%, -50%) scale(1);
    }

    .property-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .45s ease;
    }

    .property-card:hover img {
      transform: scale(1.05);
    }

    .tag,
    .photo-count {
      position: absolute;
      z-index: 3;
      padding: 6px 9px;
      border-radius: 5px;
      font-size: 10px;
      font-weight: 900;
    }

    .tag {
      top: 13px;
      left: 13px;
      background: var(--gold);
      color: var(--dark);
    }

    .photo-count {
      right: 13px;
      bottom: 13px;
      background: rgba(0, 0, 0, .58);
      color: #ffffff;
    }

    .property-body {
      padding: 22px;
    }

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

    .price {
      margin: 18px 0;
      color: var(--gold);
      font-size: 22px;
      font-weight: 900;
    }

    .meta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      padding-top: 16px;
      border-top: 1px solid #edf0f3;
      color: var(--muted);
      font-size: 12px;
    }

    .meta-row span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .meta-row span::before {
      content: "";
      width: 15px;
      height: 15px;
      flex: 0 0 auto;
      background: var(--gold);
      mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M4 11h16v8h-2v-3H6v3H4V11Zm2-6h12a2 2 0 0 1 2 2v3H4V7a2 2 0 0 1 2-2Zm1 2v2h10V7H7Z'/%3E%3C/svg%3E") center / contain no-repeat;
    }

    .meta-row span:nth-child(2)::before {
      mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M7 3h10v8h3v10H4V11h3V3Zm2 2v6h6V5H9Zm-3 8v6h12v-6H6Z'/%3E%3C/svg%3E");
    }

    .meta-row span:nth-child(3)::before {
      mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M4 4h16v16H4V4Zm2 2v12h12V6H6Zm3 3h6v2H9V9Zm0 4h4v2H9v-2Z'/%3E%3C/svg%3E");
    }

    .cta-grid {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      align-items: center;
      gap: 60px;
    }

    .cta-grid img {
      width: 280px;
      height: 320px;
      object-fit: cover;
      object-position: top;
      border-radius: 14px;
    }

    .process-card,
    .value-card,
    .review-card {
      padding: 28px;
      border-radius: 12px;
    }

    .process-card {
      position: relative;
      background: rgba(255, 255, 255, .045);
      border: 1px solid rgba(201, 160, 48, .2);
    }

    .process-num {
      position: absolute;
      top: 18px;
      right: 22px;
      color: rgba(201, 160, 48, .13);
      font-size: 52px;
      font-weight: 900;
    }

    .process-card p {
      color: #aeb6c3;
      line-height: 1.6;
    }

    .value-card,
    .review-card {
      background: #ffffff;
      border: 1px solid var(--line);
    }

    .value-card {
      text-align: center;
    }

    .value-card .icon-box {
      margin: 0 auto;
    }

    .value-card p,
    .review-card p {
      color: var(--muted);
      line-height: 1.65;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      max-width: 860px;
      margin: 0 auto;
      gap: 24px;
    }

    .stars {
      color: var(--gold);
      letter-spacing: 2px;
    }

    .extra-property.is-hidden {
      display: none;
    }

    .extra-property.is-collapsed {
      max-height: 0;
      opacity: 0;
      transform: translateY(18px);
      pointer-events: none;
      border-color: transparent;
    }

    .properties-grid.show-all .extra-property {
      display: block;
      max-height: 620px;
      opacity: 1;
      transform: translateY(0);
    }

    .properties-action {
      display: flex;
      justify-content: center;
      margin-top: 36px;
    }

    .properties-action.is-hidden-control {
      display: none;
    }

    @keyframes reveal-property {
      from { opacity: 0; transform: translateY(16px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-top: 20px;
      color: var(--dark);
      transition: color .2s ease, transform .2s ease;
    }

    a.contact-item:hover,
    a.contact-item:focus-visible {
      color: var(--gold);
      transform: translateX(4px);
    }

    .contact-item small,
    .contact-item strong { display: block; }
    .contact-item small { margin-bottom: 4px; color: var(--muted); }

    .contact-form {
      display: grid;
      gap: 16px;
      padding: 30px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: #f9fafb;
      box-shadow: 0 22px 50px rgba(15, 17, 23, .08);
    }

    .form-heading {
      padding-bottom: 4px;
      border-bottom: 1px solid var(--line);
    }

    .form-heading h3 {
      margin: 0 0 6px;
      font-size: 22px;
    }

    .form-heading p {
      margin: 0 0 12px;
      color: var(--muted);
      line-height: 1.6;
    }

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

    .contact-form label {
      display: grid;
      gap: 8px;
      color: #687080;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
      width: 100%;
      padding: 13px 14px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #ffffff;
      color: var(--dark);
      font: inherit;
      text-transform: none;
      transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    }

    .contact-form input:focus,
    .contact-form select:focus,
    .contact-form textarea:focus {
      border-color: var(--gold);
      outline: 2px solid rgba(201, 160, 48, .18);
      box-shadow: 0 8px 20px rgba(15, 17, 23, .06);
    }

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

    .checkbox-label {
      display: flex !important;
      grid-template-columns: none !important;
      align-items: flex-start;
      gap: 10px !important;
      color: var(--muted) !important;
      font-size: 12px !important;
      line-height: 1.5;
      text-transform: none !important;
      font-weight: 700 !important;
    }

    .checkbox-label input {
      width: 18px;
      height: 18px;
      margin: 1px 0 0;
      accent-color: var(--gold);
      flex: 0 0 auto;
    }

    .form-note { margin: 0; color: var(--muted); text-align: center; font-size: 12px; }
    .form-success { padding: 18px; border: 1px solid rgba(201, 160, 48, .35); border-radius: 8px; background: rgba(201, 160, 48, .09); text-align: center; animation: form-success-in .25s ease both; }

    .footer {
      background: var(--dark);
      color: #ffffff;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 52px;
      padding: 64px 0 42px;
    }

    .footer p,
    .footer a {
      color: #aeb6c3;
      font-size: 14px;
      line-height: 1.7;
    }

    .footer a {
      display: inline-block;
      transition: color .2s ease, transform .2s ease;
    }

    .footer a:hover,
    .footer a:focus-visible {
      color: var(--gold);
      transform: translateX(4px);
    }

    .footer-logo {
      display: inline-flex;
      align-items: center;
      margin-bottom: 18px;
    }

    .footer-logo-image {
      width: 58px;
      height: 58px;
      object-fit: contain;
      border-radius: 8px;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .footer-logo:hover .footer-logo-image {
      transform: translateY(-2px) scale(1.03);
      box-shadow: 0 14px 26px rgba(201, 160, 48, .18);
    }

    .footer h3 {
      color: var(--gold);
      font-size: 12px;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .footer ul {
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .footer li {
      margin: 10px 0;
    }

    .footer-copy {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      padding: 24px 0;
      color: #7c8492;
      border-top: 1px solid rgba(255, 255, 255, .08);
      font-size: 12px;
    }

    .modal {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: none;
      overflow-y: auto;
      background: #ffffff;
    }

    .modal.is-open {
      display: block;
      animation: modal-fade-in .22s ease both;
    }

    .modal.is-closing {
      display: block;
      animation: modal-fade-out .22s ease both;
    }

    .modal-bar {
      position: sticky;
      top: 0;
      z-index: 2;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 24px;
      background: var(--dark);
      color: #ffffff;
    }

    .modal-bar button {
      color: #ffffff;
      background: transparent;
      font-weight: 800;
    }

    .modal-bar button:hover,
    .modal-bar button:focus-visible {
      color: var(--gold);
      transform: translateX(-3px);
    }

    .property-detail {
      width: min(1120px, calc(100% - 40px));
      margin: 0 auto;
      padding: 32px 0 70px;
    }

    .modal.is-open .property-detail {
      animation: detail-in .32s ease both;
    }

    .property-slideshow {
      display: grid;
      gap: 12px;
      margin-bottom: 32px;
    }

    .slideshow-stage {
      position: relative;
      height: 520px;
      overflow: hidden;
      border-radius: 12px;
      background: #11141d;
    }

    .slideshow-stage img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      cursor: zoom-in;
      transition: opacity .22s ease, transform .25s ease, filter .25s ease;
    }

    .slideshow-stage:hover img {
      transform: scale(1.025);
      filter: brightness(.94);
    }

    .slideshow-nav {
      position: absolute;
      top: 50%;
      z-index: 3;
      width: 46px;
      height: 58px;
      border-radius: 7px;
      background: rgba(255, 255, 255, .92);
      color: var(--dark);
      font-size: 38px;
      line-height: 1;
      transform: translateY(-50%);
      box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
    }

    .slideshow-nav:hover,
    .slideshow-nav:focus-visible {
      background: var(--gold);
      transform: translateY(-50%) scale(1.04);
    }

    .slideshow-prev {
      left: 16px;
    }

    .slideshow-next {
      right: 16px;
    }

    .slideshow-counter {
      position: absolute;
      right: 16px;
      bottom: 16px;
      z-index: 3;
      padding: 8px 11px;
      border-radius: 7px;
      background: rgba(0, 0, 0, .62);
      color: #ffffff;
      font-size: 12px;
      font-weight: 900;
    }

    .slideshow-caption {
      padding: 13px 16px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #ffffff;
      color: var(--muted);
      line-height: 1.55;
    }

    .slideshow-thumbs {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(108px, 1fr));
      gap: 10px;
    }

    .slideshow-thumb {
      height: 82px;
      padding: 0;
      overflow: hidden;
      border: 2px solid transparent;
      border-radius: 8px;
      background: #eeeeee;
      opacity: .72;
    }

    .slideshow-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .slideshow-thumb:hover,
    .slideshow-thumb:focus-visible,
    .slideshow-thumb.is-active {
      opacity: 1;
      border-color: var(--gold);
      transform: translateY(-2px);
    }

    .gallery {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 8px;
      height: 480px;
      margin-bottom: 30px;
      overflow: hidden;
      border-radius: 14px;
    }

    .gallery img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      cursor: zoom-in;
      transition: transform .25s ease, filter .25s ease;
    }

    .gallery-main,
    .gallery-side div {
      position: relative;
      overflow: hidden;
    }

    .gallery-main::after,
    .gallery-side div::after {
      content: "";
      position: absolute;
      right: 14px;
      bottom: 14px;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, .94);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%230f1117' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 3H3v5'/%3E%3Cpath d='M16 3h5v5'/%3E%3Cpath d='M8 21H3v-5'/%3E%3Cpath d='M16 21h5v-5'/%3E%3Cpath d='M3 3l7 7'/%3E%3Cpath d='m21 3-7 7'/%3E%3Cpath d='m3 21 7-7'/%3E%3Cpath d='m21 21-7-7'/%3E%3C/svg%3E");
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0;
      transform: translateY(6px);
      transition: opacity .2s ease, transform .2s ease;
      pointer-events: none;
    }

    .gallery-main:hover img,
    .gallery-side div:hover img {
      transform: scale(1.035);
      filter: brightness(.92);
    }

    .gallery-main:hover::after,
    .gallery-side div:hover::after {
      opacity: 1;
      transform: translateY(0);
    }

    .gallery-side {
      display: grid;
      gap: 8px;
    }

    .detail-layout {
      display: grid;
      grid-template-columns: 1.35fr .65fr;
      gap: 34px;
    }

    .detail-sidebar {
      align-self: start;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: #f9fafb;
      position: sticky;
      top: 86px;
    }

    .detail-description {
      margin: 24px 0 30px;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: #ffffff;
      box-shadow: 0 14px 34px rgba(15, 17, 23, .05);
    }

    .detail-description h2 {
      margin-top: 0;
    }

    .detail-description p {
      color: #4f5868;
      line-height: 1.8;
    }

    .detail-stats,
    .feature-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .detail-stat,
    .feature-list li {
      padding: 12px;
      border-radius: 8px;
      background: #ffffff;
      border: 1px solid var(--line);
    }

    .listing-contact-form {
      display: grid;
      gap: 12px;
      margin-top: 22px;
      padding-top: 22px;
      border-top: 1px solid var(--line);
    }

    .listing-contact-form h3 {
      margin: 0;
    }

    .listing-contact-form label {
      display: grid;
      gap: 7px;
      color: #687080;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .listing-contact-form input,
    .listing-contact-form textarea {
      width: 100%;
      padding: 12px 13px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #ffffff;
      color: var(--dark);
      font: inherit;
      text-transform: none;
      resize: vertical;
    }

    .listing-contact-form input:focus,
    .listing-contact-form textarea:focus {
      border-color: var(--gold);
      outline: 2px solid rgba(201, 160, 48, .18);
    }

    .listing-contact-form .btn {
      width: 100%;
      margin-top: 2px;
    }

    .listing-form-note {
      margin: 0;
      color: var(--muted);
      font-size: 12px;
      text-align: center;
    }

    .listing-form-success {
      padding: 12px;
      font-size: 13px;
    }

    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 160;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 34px;
      background: rgba(15, 17, 23, .92);
    }

    .lightbox.is-open {
      display: flex;
      animation: modal-fade-in .2s ease both;
    }

    .lightbox img {
      max-width: min(1160px, 100%);
      max-height: calc(100vh - 90px);
      object-fit: contain;
      border-radius: 10px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
      animation: detail-in .28s ease both;
    }

    .lightbox-close {
      position: absolute;
      top: 18px;
      right: 22px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #ffffff;
      color: var(--dark);
      font-size: 30px;
      line-height: 1;
    }

    .lightbox-close:hover,
    .lightbox-close:focus-visible {
      background: var(--gold);
      transform: scale(1.04);
    }

    @keyframes modal-fade-in {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes modal-fade-out {
      from { opacity: 1; }
      to { opacity: 0; }
    }

    @keyframes detail-in {
      from { opacity: 0; transform: translateY(18px) scale(.985); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }

    @keyframes form-success-in {
      from { opacity: 0; transform: translateY(8px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .feature-list {
      padding: 0;
      list-style: none;
    }

    @media (max-width: 900px) {
      .nav-links,
      .nav .btn {
        display: none;
      }

      .menu-button {
        display: block;
      }

      .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .hero-grid,
      .cta-grid,
      .detail-layout,
      .gallery {
        grid-template-columns: 1fr;
      }

      .detail-sidebar {
        position: static;
      }

      .hero {
        padding-bottom: 220px;
      }

      .agent-photo {
        justify-self: center;
      }

      .hero-features-grid,
      .properties-grid,
      .process-grid,
      .values-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .gallery {
        height: auto;
      }

      .slideshow-stage {
        height: 360px;
      }

      .slideshow-thumbs {
        grid-template-columns: repeat(3, 1fr);
      }

      .gallery-main {
        height: 340px;
      }

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

      .gallery-side img {
        height: 170px;
      }
    }

    @media (max-width: 560px) {
      .form-row { grid-template-columns: 1fr; }
    }

    @media (max-width: 620px) {
      .wrap {
        width: min(100% - 36px, 1180px);
      }

      .hero-features-grid,
      .properties-grid,
      .process-grid,
      .values-grid,
      .reviews-grid,
      .detail-stats,
      .feature-list {
        grid-template-columns: 1fr;
      }

      .slideshow-stage {
        height: 280px;
      }

      .slideshow-nav {
        width: 38px;
        height: 48px;
        font-size: 30px;
      }

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

      .feature-mini p {
        display: none;
      }

      .btn,
      .tab {
        width: 100%;
      }

      .tabs,
      .hero-actions {
        width: 100%;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-copy {
        display: block;
      }
    }
.cookie-banner{

    position:fixed;

    left:20px;
    right:20px;
    bottom:20px;

    max-width:1200px;
    margin:auto;

    padding:30px;

    background:white;

    border-radius:20px;

    box-shadow:
    0 10px 40px rgba(0,0,0,.15);

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;

    z-index:9999;

}


.cookie-banner p{

    margin:0;
    line-height:1.8;

}


.cookie-banner a{

    font-weight:600;
    text-decoration:underline;

}


.cookie-buttons{

    display:flex;
    gap:15px;
    flex-wrap:wrap;

}


@media(max-width:768px){

    .cookie-banner{

        flex-direction:column;
        text-align:center;

    }

}
