:root {
  --bg: #f4f3ef;
  --surface: #ffffff;
  --surface-soft: #f8f9fb;
  --text: #14243f;
  --muted: #748093;
  --line: #e7ebf0;
  --navy: #132c4d;
  --navy-soft: #203a5e;
  --orange: #f7941d;
  --orange-soft: #fff3df;
  --footer: #111c2f;
  --shadow: 0 24px 60px rgba(17, 28, 47, 0.1);
  --radius: 8px;
  --site: 1260px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(247, 148, 29, 0.09), transparent 28%),
    linear-gradient(180deg, #faf9f7 0%, #f2f1ec 100%);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
}
img, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 14px 18px 0;
}
.site-header__inner {
  width: min(100%, var(--site));
  margin: 0 auto;
  min-height: 74px;
  padding: 10px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(19, 44, 77, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0f2139, #1d3656);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 24px rgba(19, 44, 77, 0.18);
}
.brand-mark img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.brand-copy {
  display: grid;
  gap: 2px;
}
.brand-copy strong,
.brand-copy small {
  display: block;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}
.brand-copy small { color: var(--orange); }
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
}
.site-nav a {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}
.site-nav a:hover { color: var(--orange); }
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}
.social-link,
.lang-toggle,
.menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lang-toggle {
  width: 54px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.menu-toggle { display: none; }

.social-link svg,
.menu-toggle svg,
.property-card__metric-icon svg,
.property-card__footer-item svg,
.property-card__price-icon svg,
.detail-summary-card__price-icon svg,
.detail-quick-stats svg,
.detail-summary-card__actions svg,
.detail-contact-links svg,
.footer-contact-list svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-link svg rect,
.social-link svg circle { fill: none; }

main {
  width: min(100%, var(--site));
  margin: 0 auto;
  padding: 0 18px 72px;
}

.hero-banner {
  position: relative;
  margin-top: 18px;
  aspect-ratio: 16 / 4.9;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-banner__image,
.hero-banner__image img,
.hero-banner__overlay {
  position: absolute;
  inset: 0;
}
.hero-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-banner__overlay {
  background:
    linear-gradient(90deg, rgba(14, 30, 50, 0.84) 0%, rgba(14, 30, 50, 0.42) 46%, rgba(14, 30, 50, 0.24) 100%);
}
.hero-banner__content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: clamp(30px, 5vw, 54px);
  display: flex;
  align-items: flex-start;
}
.hero-banner__copy {
  max-width: 560px;
  color: #fff;
}
.eyebrow,
.section-heading span,
.search-panel__intro span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #ffd79f;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 800;
}
.hero-banner__copy h1,
.section-heading h2,
.detail-summary-card h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(17px, 2.2vw, 19px);
  line-height: 0.98;
}


.hero-banner__copy p {
  margin: 16px 0 0;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
  font-size: 13px;
}

.search-panel-wrap {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}
.search-panel {
  padding: 24px 24px 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(19, 44, 77, 0.08);
  box-shadow: var(--shadow);
}
.search-panel__intro h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.02;
  font-family: "Cormorant Garamond", Georgia, serif;
}
.search-panel__intro span { color: var(--orange); }
.search-panel__fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 220px;
  gap: 14px;
  margin-top: 18px;
}
.search-panel label,
.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}
.search-panel select,
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--text);
}
.contact-form textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}
.search-panel button,
.contact-form button {
  min-height: 54px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #132c4d, #274b78);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 18px 26px rgba(19, 44, 77, 0.16);
}

.section-heading {
  padding: 68px 0 26px;
  text-align: center;
}
.section-heading--left { text-align: left; }
.section-heading h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 0.97;
  color: var(--navy);
}
.section-heading p {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.78;
}

.showcase-section { padding-top: 10px; }
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: slideLeft 34s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes slideLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.showcase-card {
  width: clamp(190px, 16vw, 230px);
  flex: 0 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, filter 0.25s ease;
}
.showcase-card:hover {
  transform: scale(0.97);
  filter: saturate(1.04);
}
.showcase-card__media {
  position: relative;
  aspect-ratio: 2 / 3;
}
.showcase-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showcase-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(19, 44, 77, 0.92));
}
.showcase-card__tag,
.showcase-card__stats {
  position: absolute;
  z-index: 1;
}
.showcase-card__tag {
  top: 12px;
  left: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
}
.showcase-card__stats {
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
}
.showcase-card__stats strong {
  font-size: 16px;
  line-height: 1;
}
.showcase-card__stats small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.property-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(19, 44, 77, 0.06);
  box-shadow: var(--shadow);
}
.property-card__link { display: block; }
.property-card__photo {
  position: relative;
  padding: 14px 14px 0;
}
.property-card__photo img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: calc(var(--radius) - 1px);
}
.property-card__top-badge {
  position: absolute;
  top: 30px;
  left: 30px;
  min-height: 52px;
  min-width: 112px;
  padding: 0 18px;
  border-radius: 16px;
  background: #102c4a;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.property-card__top-badge span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  line-height: 1;
}
.property-card__body { padding: 20px 22px 22px; }
.property-card__body h3 {
  margin: 0;
  color: #102c4a;
  font-size: 20px;
  line-height: 1.22;
  min-height: 52px;
}
.property-card__price-pill,
.detail-summary-card__price {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  min-height: 58px;
  padding: 0 20px;
  border-radius: 18px;
  background: #102c4a;
  color: #fff;
}
.property-card__price-pill strong,
.detail-summary-card__price strong {
  font-size: 18px;
  font-weight: 800;
}
.property-card__price-icon,
.detail-summary-card__price-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.property-card__metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.property-card__metric,
.detail-quick-stats span {
  display: grid;
  justify-items: center;
  gap: 6px;
}
.property-card__metric {
  align-content: start;
  min-height: 96px;
  text-align: center;
}
.property-card__metric-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--orange-soft);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.property-card__metric strong,
.detail-quick-stats strong {
  font-size: 18px;
  color: var(--navy);
  line-height: 1.15;
  text-align: center;
}
.property-card__metric small,
.detail-quick-stats small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
}
.property-card__location {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
}
.property-card__footer-bar {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f0f1f5 0%, #e4e6ea 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.property-card__footer-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-soft);
}
.property-card__footer-item small {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}
.properties-empty {
  margin-top: 18px;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  text-align: center;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}
.trust-section > .section-heading {
  padding: 34px 30px;
  border-radius: var(--radius);
  align-self: center;
  transform: translateY(18px);
  background: linear-gradient(180deg, rgba(247, 148, 29, 0.16), rgba(247, 148, 29, 0.08));
  border: 1px solid rgba(247, 148, 29, 0.24);
}
.trust-section > .section-heading span {
  color: #111;
}
.trust-section > .section-heading h2 {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.04;
}
.trust-grid {
  display: grid;
  gap: 16px;
  padding-top: 0;
}
.trust-grid article,
.detail-block,
.contact-panel,
.map-panel,
.detail-gallery-panel,
.detail-summary-card {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(19, 44, 77, 0.07);
  box-shadow: var(--shadow);
}
.trust-grid article {
  border-left: 10px solid var(--orange);
}
.trust-grid h3,
.detail-block h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 22px;
}
.trust-grid p,
.detail-block p,
.detail-spec-list li,
.feature-list li {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.contact-map-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 22px;
  padding-top: 24px;
}
.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}
.map-panel iframe {
  width: 100%;
  min-height: 100%;
  height: 100%;
  border: 0;
  border-radius: calc(var(--radius) - 1px);
}

.detail-page { padding-top: 30px; }
.detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 24px;
  align-items: start;
}
.detail-gallery-panel {
  padding: 18px;
}
.detail-main-image {
  overflow: hidden;
  border-radius: calc(var(--radius) - 1px);
}
.detail-main-image img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}
.detail-gallery__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.detail-thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
}
.detail-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.detail-thumb.is-active { border-color: var(--orange); }

.detail-summary-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: #102c4a;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.detail-summary-card h1 {
  margin-top: 18px;
  color: var(--navy);
}
.detail-lead {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.8;
}
.detail-summary-card__location {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
}
.detail-quick-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.detail-quick-stats svg {
  width: 22px;
  height: 22px;
  color: var(--orange);
}
.detail-summary-card__actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.detail-summary-card__actions a,
.detail-contact-links a,
.footer-contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.detail-summary-card__actions a {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 16px;
  background: var(--surface-soft);
  color: var(--navy);
  font-weight: 700;
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 22px;
  padding-top: 24px;
}
.detail-spec-list,
.feature-list,
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.detail-spec-list {
  display: grid;
  gap: 14px;
}
.detail-spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.detail-features {
  padding-top: 12px;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.feature-list li {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
}
.detail-contact-links {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}
.properties-section--related { padding-top: 8px; }

.site-footer {
  margin-top: 42px;
  padding: 0 18px 28px;
}
.site-footer__inner {
  width: min(100%, var(--site));
  margin: 0 auto;
  padding: 36px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(247, 148, 29, 0.09), transparent 32%),
    linear-gradient(180deg, #101a2d 0%, #0d1628 100%);
  color: rgba(255, 255, 255, 0.76);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 28px;
}
.footer-brand {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}
.footer-brand__mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0f2139, #1d3656);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  box-shadow: 0 14px 24px rgba(19, 44, 77, 0.18);
  overflow: hidden;
}
.footer-brand__mark img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}
.footer-brand > div {
  min-width: 0;
}
.footer-brand p {
  margin: 0;
  line-height: 1.7;
}
.footer-brand strong,
.footer-column h3 {
  display: block;
  margin: 0 0 10px;
  color: #fff;
  font-size: 18px;
}
.footer-column p,
.footer-column a,
.footer-column li {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.8;
}
.footer-links li {
  margin: 0 0 6px;
}
.footer-contact-list {
  display: grid;
  gap: 10px;
}

.missing-page {
  min-height: calc(100vh - 220px);
  display: grid;
  place-items: center;
}
.missing-page div {
  max-width: 520px;
  padding: 32px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  text-align: center;
}

@media (max-width: 1120px) {
  .search-panel__fields,
  .trust-section,
  .contact-map-section,
  .detail-shell,
  .detail-content,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
  .properties-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .detail-gallery__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .trust-section > .section-heading {
    transform: none;
  }
}

@media (max-width: 760px) {
  .site-header { padding: 12px 12px 0; }
  .site-header__inner {
    min-height: 68px;
    padding: 8px 10px;
  }
  .brand-copy { display: none; }
  .site-nav {
    position: absolute;
    top: 78px;
    left: 12px;
    right: 12px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .site-nav.is-open { display: flex; }
  .header-socials { display: none; }
  .menu-toggle { display: inline-flex; }
  main { padding: 0 12px 56px; }
  .hero-banner { aspect-ratio: 16 / 9; }
  .hero-banner__content {
    align-items: flex-start;
    padding: 20px;
  }
  .hero-banner__copy {
    max-width: 320px;
  }
  .hero-banner__copy h1 {
    font-size: clamp(15px, 4.7vw, 18px);
    line-height: 1.06;
  }
  .hero-banner__copy p {
    margin-top: 8px;
    max-width: 290px;
    font-size: 11px;
    line-height: 1.35;
  }
  .search-panel-wrap {
    margin-top: 14px;
  }
  .search-panel {
    padding: 18px;
  }
  .search-panel__fields,
  .properties-grid,
  .property-card__footer-bar,
  .feature-list,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
  .property-card__metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }
  .property-card__metric {
    justify-items: center;
    text-align: center;
    min-height: 84px;
  }
  .property-card__metric-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
  }
  .property-card__metric strong {
    font-size: 14px;
  }
  .property-card__metric small {
    font-size: 10px;
    line-height: 1.25;
  }
  .property-card__body h3 {
    min-height: auto;
  }
  .showcase-card { width: 72vw; }
  .detail-quick-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .detail-shell {
    gap: 14px;
  }
  .detail-gallery-panel,
  .detail-summary-card,
  .detail-block,
  .contact-panel,
  .map-panel {
    padding: 14px;
  }
  .detail-main-image img {
    aspect-ratio: 16 / 9;
    border-radius: 14px;
  }
  .detail-gallery__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
  }
  .detail-thumb {
    flex: initial;
    border-radius: 10px;
  }
  .detail-thumb img {
    width: 100%;
    height: 54px;
    object-fit: cover;
    aspect-ratio: auto;
  }
}
