:root {
  --navy: #03132b;
  --navy-light: #0c2850;
  --white: #f8f6ef;
  --muted: #abb6c8;
  --gold: #c9a45c;
  --gold-light: #e7ca8b;
  --line: rgba(231, 202, 139, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.back-to-top {
  position: fixed;
  right: clamp(18px, 2.5vw, 38px);
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 90;
  display: grid;
  width: 56px;
  height: 56px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(232, 202, 134, .78);
  border-radius: 50%;
  background: rgba(7, 24, 46, .92);
  color: #e8ca86;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease, background .2s ease;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: #e8ca86;
  color: #07182e;
}

.back-to-top:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.back-to-top svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--navy);
  font-family: "Manrope", sans-serif;
}

@media (max-width: 700px) {
  .back-to-top {
    right: 16px;
    bottom: max(18px, env(safe-area-inset-bottom));
    width: 48px;
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: none;
  }
}

body:has(.consultation-dialog[open]) {
  overflow: hidden;
}

.home-page > .search-panel {
  display: none;
}

button,
input,
select {
  font: inherit;
}

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

.hero {
  position: relative;
  min-height: max(100svh, 840px);
  overflow: hidden;
  padding: 0 clamp(24px, 5vw, 96px);
  background:
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, .1), transparent 42%),
    linear-gradient(90deg, rgba(2, 13, 33, 0.99) 0%, rgba(3, 19, 43, 0.94) 48%, rgba(3, 19, 43, 0.72) 100%),
    url("hero-background-v3.webp") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    repeating-linear-gradient(7deg, rgba(255,255,255,.025) 0 1px, transparent 1px 3px),
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 5px 5px, 100% 4px;
}

.site-header {
  position: relative;
  z-index: 3;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 220px;
  gap: 15px;
}

.brand img {
  width: 98px;
  height: 65px;
  object-fit: contain;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: screen;
}

.brand > span {
  color: #aeb9c8;
  font-size: 8px;
  line-height: 1.55;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: clamp(20px, 2.3vw, 42px);
}

.main-nav a {
  position: relative;
  color: #d9dfe8;
  font-size: 13px;
  font-weight: 500;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transition: right 180ms ease;
}

.main-nav a:hover::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 220px;
  justify-content: flex-end;
}

.phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  white-space: nowrap;
}

.phone small {
  margin-bottom: 4px;
  color: #aeb9c8;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.phone strong {
  color: var(--gold-light);
  font-size: 20px;
  font-weight: 600;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 12px;
  border: 1px solid var(--line);
  background: transparent;
}

.menu-button span {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: var(--gold-light);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, 54vw);
  padding-top: clamp(92px, 11vh, 120px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 42px;
  height: 1px;
  background: var(--gold);
}

h1 {
  max-width: 860px;
  margin: 0;
  font: 500 clamp(48px, 4vw, 74px)/1.03 "Playfair Display", serif;
  letter-spacing: -0.035em;
}

.hero-lead {
  max-width: 550px;
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.75;
}

.hero-actions {
  width: min(100%, 360px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 34px;
}

.hero-actions .button {
  width: 100%;
}

.trust-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  color: #c6cfdb;
  font-size: 11px;
}

.stars {
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: .14em;
}

.hero-visual-luxury {
  position: absolute;
  z-index: 1;
  top: 132px;
  right: clamp(42px, 6vw, 112px);
  width: min(36vw, 540px);
  height: min(54vh, 520px);
  padding: 10px;
  isolation: isolate;
}

.luxury-glow {
  position: absolute;
  z-index: -1;
  inset: 4% 2%;
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 16%, rgba(244, 211, 139, .3), transparent 30%),
    radial-gradient(circle at 84% 82%, rgba(178, 126, 35, .24), transparent 34%);
  filter: blur(28px);
  opacity: .62;
  animation: luxury-glow-float 6.5s ease-in-out infinite;
}

.luxury-image-card {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(225, 188, 107, .56);
  border-radius: 28px;
  background: #06111f;
  box-shadow:
    0 42px 90px rgba(0, 0, 0, .54),
    0 10px 30px rgba(0, 0, 0, .34),
    inset 0 0 45px rgba(0, 0, 0, .48),
    inset 0 1px 0 rgba(255, 239, 201, .17);
}

.luxury-image-card::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 9px;
  border: 1px solid rgba(244, 211, 139, .2);
  border-radius: 20px;
  pointer-events: none;
}

.luxury-image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(.76) contrast(1.16) brightness(.62);
  transform: scale(1.045);
}

.luxury-image-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 10, 22, .1) 0%, rgba(3, 12, 27, .24) 42%, rgba(2, 8, 18, .88) 100%),
    linear-gradient(110deg, rgba(2, 11, 27, .72) 0%, transparent 48%, rgba(3, 10, 21, .2) 100%),
    radial-gradient(circle at 72% 28%, rgba(215, 167, 78, .1), transparent 35%);
  pointer-events: none;
}

.luxury-border-shimmer {
  position: absolute;
  z-index: 4;
  inset: -55%;
  background: conic-gradient(from 180deg, transparent 0 43%, rgba(255, 229, 166, .9) 49%, transparent 55% 100%);
  animation: luxury-shimmer 7s linear infinite;
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
}

.luxury-image-card p {
  position: absolute;
  z-index: 3;
  left: 36px;
  bottom: 22px;
  margin: 0;
  color: var(--gold-light);
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.luxury-stats-panel {
  position: absolute;
  z-index: 3;
  left: 28px;
  right: 28px;
  bottom: 55px;
  width: auto;
  margin: 0;
  border: 1px solid rgba(237, 207, 143, .24);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(7, 19, 36, .66), rgba(9, 22, 39, .38));
  box-shadow: 0 18px 38px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .09);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  opacity: 0;
  transform: translateY(22px);
  animation: luxury-stats-reveal .9s .55s cubic-bezier(.2, .75, .25, 1) forwards;
}

@keyframes luxury-glow-float {
  0%, 100% {
    opacity: .42;
    transform: translate3d(-8px, 7px, 0) scale(.96);
    filter: blur(25px);
  }
  50% {
    opacity: .82;
    transform: translate3d(10px, -9px, 0) scale(1.07);
    filter: blur(36px);
  }
}

@keyframes luxury-shimmer {
  to { transform: rotate(360deg); }
}

@keyframes luxury-stats-reveal {
  to { opacity: 1; transform: translateY(0); }
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: 180ms ease;
}

.button-primary {
  gap: 10px;
  color: #07182e;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201, 164, 92, 0.2);
}

.button-secondary:hover {
  background: rgba(201, 164, 92, 0.08);
}

.button-secondary {
  gap: 10px;
  color: #e8ca86;
  border-color: rgba(231, 202, 139, .52);
  background: rgba(5, 19, 39, .16);
}

.button-phone-icon,
.button-telegram-icon {
  width: 17px;
  height: 17px;
}

.button-phone-icon {
  filter: brightness(0) saturate(100%) invert(8%) sepia(30%) saturate(1890%) hue-rotate(174deg) brightness(91%) contrast(103%);
}

.button-telegram-icon {
  filter: invert(84%) sepia(36%) saturate(625%) hue-rotate(356deg) brightness(94%);
}

.search-panel {
  position: relative;
  z-index: 4;
  left: auto;
  right: auto;
  bottom: auto;
  width: calc(100% - 2 * clamp(24px, 5vw, 96px));
  margin: 24px auto 40px;
  padding: 0 24px 18px;
  color: #10213b;
  border-radius: 28px;
  background: #f7f4ee;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .18);
  backdrop-filter: blur(16px);
}

.search-tabs {
  display: flex;
  gap: 34px;
  height: 60px;
  align-items: center;
  border-bottom: 1px solid #e3dfd5;
}

.search-tab {
  position: relative;
  height: 100%;
  padding: 0;
  border: 0;
  color: #626c7b;
  background: transparent;
  font-size: 15px;
  font-weight: 750;
  letter-spacing: .01em;
  cursor: pointer;
  transition: color .18s ease;
}

.search-tab.active {
  color: var(--navy);
  font-weight: 800;
}

.search-tab:hover {
  color: #28384e;
}

.search-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: var(--gold);
}

.search-form {
  display: grid;
  grid-template-columns: 1.15fr 1.1fr 1.1fr .8fr .8fr .75fr 138px;
  align-items: end;
  gap: 0;
  padding-top: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0 18px;
  border-right: 1px solid #dedbd3;
}

.field:first-child {
  padding-left: 0;
}

.field span {
  margin-bottom: 7px;
  color: #8a8f97;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  height: 25px;
  padding: 0;
  border: 0;
  outline: 0;
  color: #11233c;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
}

.field select {
  cursor: pointer;
}

.search-button {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  color: #07182e;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.search-button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.advanced-button {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 0 auto;
  padding: 0;
  border: 0;
  color: #5f6877;
  background: transparent;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}

.advanced-filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
  padding: 20px 0 4px;
  border-top: 1px solid #e3dfd5;
}

.advanced-filters[hidden] {
  display: none;
}

.advanced-field[hidden] {
  display: none;
}

.advanced-field {
  display: grid;
  gap: 8px;
  padding: 0 16px;
  border-right: 1px solid #dedbd3;
}

.advanced-field:last-child {
  border-right: 0;
}

.advanced-field span {
  color: #8a8f97;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.advanced-field input,
.advanced-field select {
  width: 100%;
  height: 34px;
  padding: 0;
  border: 0;
  outline: 0;
  color: #11233c;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
}

.advanced-button[aria-expanded="true"] .filter-icon {
  transform: rotate(90deg);
}

.filter-icon {
  width: 14px;
  height: 10px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transition: transform 180ms ease;
}

.hero-meta {
  width: min(620px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(3, 18, 41, .58);
  backdrop-filter: blur(16px);
}

.hero-meta span {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 18px;
  border-right: 1px solid rgba(255,255,255,.1);
}

.hero-meta span:last-child { border-right: 0; }

.hero-meta strong {
  color: var(--gold-light);
  font: 500 22px "Playfair Display", serif;
}

.hero-meta small {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.socials {
  position: absolute;
  z-index: 3;
  right: 18px;
  top: 50%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(-50%);
}

.socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(231, 202, 139, 0.25);
  border-radius: 50%;
  color: var(--gold-light);
}

.socials img {
  width: 20px;
  height: 20px;
  filter: invert(84%) sepia(36%) saturate(625%) hue-rotate(356deg) brightness(94%);
}

.mobile-socials {
  display: none;
}

.consultation-dialog {
  width: min(560px, calc(100% - 32px));
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(226, 188, 111, .45);
  border-radius: 28px;
  color: #f7f2e9;
  background:
    radial-gradient(circle at 100% 0, rgba(207, 164, 79, .2), transparent 35%),
    #071a31;
  box-shadow: 0 45px 110px rgba(0, 0, 0, .65);
}

.consultation-dialog::backdrop {
  background: rgba(1, 8, 18, .78);
  backdrop-filter: blur(8px);
}

.consultation-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  color: #edcf8b;
  background: transparent;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.consultation-intro {
  padding: 42px 44px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.consultation-intro p {
  margin: 0 0 10px;
  color: #deb968;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.consultation-intro h2 {
  margin: 0 0 12px;
  font: 500 42px/1.05 "Playfair Display", serif;
}

.consultation-intro > span {
  color: #aeb9c8;
  font-size: 14px;
}

.consultation-form {
  display: grid;
  gap: 18px;
  padding: 30px 44px 40px;
}

.consultation-form label {
  display: grid;
  gap: 8px;
}

.consultation-form label > span {
  color: #c9d1dc;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.consultation-form small {
  color: #748398;
  font-weight: 500;
  text-transform: none;
}

.consultation-form input,
.consultation-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(231, 202, 139, .22);
  border-radius: 10px;
  outline: none;
  color: #f8f6ef;
  background: rgba(255, 255, 255, .045);
  resize: vertical;
}

.consultation-form input:focus,
.consultation-form textarea:focus {
  border-color: #deb968;
}

.consultation-submit {
  min-height: 54px;
  border: 0;
  color: #07182e;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  cursor: pointer;
  font-weight: 800;
}

.consultation-submit:disabled {
  cursor: wait;
  opacity: .7;
}

.consultation-status {
  min-height: 20px;
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.consultation-status.is-success { color: #a7dfb1; }
.consultation-status.is-error { color: #ffb1a8; }
.consultation-honeypot { position: absolute; left: -9999px; }

@media (max-width: 600px) {
  .consultation-intro { padding: 38px 24px 24px; }
  .consultation-intro h2 { font-size: 34px; }
  .consultation-form { padding: 24px; }
}

@media (max-width: 1120px) {
  .main-nav {
    position: fixed;
    z-index: 20;
    inset: 82px 0 auto;
    display: grid;
    gap: 0;
    padding: 22px 24px 34px;
    border-bottom: 1px solid rgba(231, 202, 139, .24);
    background: rgba(3, 19, 43, .98);
    box-shadow: 0 28px 60px rgba(0, 0, 0, .45);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 17px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: #f6f1e8;
    font-family: "Playfair Display", serif;
    font-size: 24px;
  }

  .main-nav a::after {
    display: none;
  }

  .menu-button {
    position: relative;
    z-index: 21;
    display: block;
    cursor: pointer;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .hero-content {
    width: 72vw;
  }

  .hero-visual-luxury {
    right: 4vw;
    width: 34vw;
    opacity: .82;
  }

  .search-form {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 0;
  }

  .search-button {
    grid-column: span 3;
  }
}

@media (min-width: 761px) and (max-height: 780px) {
  .hero {
    min-height: 840px;
  }

  .site-header {
    height: 82px;
  }

  .hero-content {
    padding-top: 38px;
  }

  .eyebrow {
    margin-bottom: 14px;
  }

  h1 {
    max-width: 650px;
    font-size: clamp(42px, 4.25vw, 64px);
  }

  .hero-lead {
    margin-top: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .button {
    min-height: 48px;
  }

  .luxury-stats-panel {
    display: grid;
    bottom: 46px;
  }

}

@media (min-width: 1400px) and (max-height: 1050px) {
  .hero-content {
    padding-top: 86px;
  }

  h1 {
    font-size: clamp(58px, 3.8vw, 76px);
  }

  .hero-lead {
    margin-top: 20px;
    line-height: 1.6;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .trust-line {
    margin-top: 17px;
  }

}

@media (max-width: 760px) {
  .hero {
    min-height: 100svh;
    padding: 0 20px 28px;
    overflow: hidden;
  }

  .site-header {
    height: 82px;
  }

  .phone,
  .socials {
    display: none;
  }

  .mobile-socials {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
  }

  .mobile-socials a {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(231, 202, 139, .42);
    border-radius: 50%;
    background: rgba(5, 19, 39, .42);
  }

  .mobile-socials img {
    width: 21px;
    height: 21px;
    filter: invert(84%) sepia(36%) saturate(625%) hue-rotate(356deg) brightness(94%);
  }

  .brand,
  .header-actions {
    min-width: auto;
  }

  .hero-content {
    width: 100%;
    padding-top: 48px;
  }

  h1 {
    font-size: clamp(42px, 12vw, 62px);
  }

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

  .hero-visual-luxury {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: clamp(330px, 92vw, 460px);
    margin-top: 42px;
    padding: 6px;
    opacity: 1;
  }

  .luxury-image-card {
    border-radius: 22px;
  }

  .luxury-image-card::after {
    inset: 7px;
    border-radius: 16px;
  }

  .luxury-stats-panel {
    left: 16px;
    right: 16px;
    bottom: 48px;
    border-radius: 13px;
  }

  .luxury-image-card p {
    left: 23px;
    bottom: 20px;
  }

  .trust-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .hero-meta span {
    min-width: 0;
    padding: 12px 6px;
  }

  .hero-meta strong {
    font-size: 18px;
  }

  .luxury-stats-panel small {
    font-size: 7px;
    line-height: 1.35;
    letter-spacing: .02em;
    white-space: normal;
  }

  .search-panel {
    width: calc(100% - 40px);
    margin: 28px auto;
    padding: 0 18px 18px;
  }

  .search-form {
    grid-template-columns: 1fr 1fr;
    gap: 18px 0;
  }

  .field {
    padding: 0 14px;
  }

  .search-button {
    grid-column: span 2;
  }

  .advanced-filters {
    grid-template-columns: 1fr 1fr;
  }

  .advanced-field:nth-child(even) {
    border-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual-luxury,
  .luxury-glow,
  .luxury-border-shimmer,
  .luxury-stats-panel {
    animation: none;
  }

  .luxury-stats-panel {
    opacity: 1;
    transform: none;
  }

  .luxury-image-card,
  .luxury-image-card img {
    transition: none;
  }
}

/* Contacts */
.contacts-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 88% 4%, rgba(205, 165, 86, .14), transparent 28%),
    linear-gradient(145deg, #06182f, #03132b 58%, #020d1e);
}

.contacts-main {
  width: min(1560px, calc(100% - 9vw));
  margin: 0 auto;
  padding: clamp(58px, 7vw, 110px) 0 90px;
}

.contacts-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
  align-items: end;
  gap: clamp(40px, 8vw, 130px);
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.contacts-hero h1 {
  max-width: 950px;
  margin: 0;
  font-size: clamp(52px, 6.4vw, 102px);
  line-height: .96;
  overflow-wrap: anywhere;
}

.contacts-hero > p {
  margin: 0;
  color: #abb6c8;
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.75;
}

.contacts-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .65fr);
  min-width: 0;
  gap: 22px;
  margin-top: 24px;
}

.contacts-details,
.contact-form {
  min-width: 0;
  border: 1px solid rgba(222, 185, 104, .2);
  background: rgba(8, 26, 49, .82);
}

.contacts-details { padding: clamp(28px, 4vw, 56px); }

.contact-address-card {
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.contact-card-label,
.contact-channel > span {
  color: #d5b468;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.contact-address-card h2 {
  margin: 18px 0 5px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(37px, 4vw, 58px);
  font-weight: 500;
}

.contact-address-card p { margin: 0 0 25px; color: #aeb9c8; }

.contact-address-card > a {
  display: inline-flex;
  gap: 12px;
  color: #e8ca86;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid rgba(232, 202, 134, .5);
  padding-bottom: 5px;
}

.contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-left: 1px solid rgba(255, 255, 255, .08);
}

.contact-channel {
  display: grid;
  gap: 12px;
  padding: 25px 22px;
  border-right: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.contact-channel a {
  overflow-wrap: anywhere;
  color: #f6f1e8;
  font-size: clamp(15px, 1.4vw, 21px);
  font-weight: 600;
}

.contact-socials {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 14px;
  width: min(100%, 620px);
  margin-top: 28px;
}

.contact-socials a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid rgba(226, 190, 114, .36);
  color: #e8ca86;
  font-size: 12px;
  font-weight: 700;
  transition: transform .18s ease, background .18s ease;
}

.contact-socials a:hover {
  transform: translateY(-2px);
  background: rgba(201, 164, 92, .08);
}

.contact-socials img {
  width: 18px;
  height: 18px;
  filter: invert(84%) sepia(36%) saturate(625%) hue-rotate(356deg) brightness(94%);
}

.contact-form {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: clamp(28px, 4vw, 50px);
}

.contact-form-heading { margin-bottom: 8px; }
.contact-form-heading p {
  margin: 0 0 12px;
  color: #d9b96f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-form-heading h2 {
  margin: 0 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(31px, 3vw, 45px);
  font-weight: 500;
  line-height: 1.08;
}

.contact-form-heading > span {
  color: #98a6b9;
  font-size: 13px;
  line-height: 1.6;
}

.contact-form label { display: grid; gap: 8px; }
.contact-form label > span {
  color: #c4cedb;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(231, 202, 139, .22);
  outline: 0;
  color: #f8f6ef;
  background: rgba(255, 255, 255, .045);
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: #deb968; }

.contact-form button {
  min-height: 56px;
  border: 0;
  color: #07182e;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  cursor: pointer;
  font-weight: 800;
}

.contact-form button:disabled { opacity: .7; cursor: wait; }
.contact-form-status { min-height: 20px; margin: 0; font-size: 13px; line-height: 1.5; }
.contact-form-status.is-success { color: #a7dfb1; }
.contact-form-status.is-error { color: #ffb1a8; }

.contacts-map {
  height: clamp(360px, 38vw, 560px);
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(222, 185, 104, .2);
  background: #07182e;
}

.contacts-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.72) sepia(.15) contrast(1.05);
}

@media (max-width: 980px) {
  .contacts-hero,
  .contacts-layout { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .contacts-main {
    width: calc(100% - 28px);
    padding: 48px 0 60px;
  }
  .contacts-hero { gap: 24px; padding-bottom: 32px; }
  .contacts-hero h1 { font-size: clamp(40px, 11.5vw, 50px); line-height: 1; }
  .contacts-hero > p { overflow-wrap: anywhere; }
  .contacts-details,
  .contact-form { padding: 25px 20px; }
  .contact-channel-grid { grid-template-columns: 1fr; }
  .contact-socials {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .contacts-map { height: 390px; }
}

/* Reviews */
.reviews-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 90% 4%, rgba(208, 166, 82, .14), transparent 28%),
    #03132b;
}

.reviews-main {
  width: min(1560px, calc(100% - 9vw));
  margin: 0 auto;
  padding: clamp(58px, 7vw, 110px) 0 100px;
}

.reviews-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .65fr);
  align-items: end;
  gap: clamp(40px, 8vw, 130px);
}

.reviews-hero > div,
.reviews-hero-copy,
.reviews-summary,
.reviews-showcase,
.reviews-section-heading,
.review-placeholder-grid,
.review-placeholder,
.leave-review-section,
.review-form {
  min-width: 0;
}

.reviews-hero h1 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(52px, 6.2vw, 98px);
  line-height: .96;
}

.reviews-hero-copy p {
  margin: 0 0 25px;
  color: #abb6c8;
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.75;
}

.reviews-hero-copy p,
.reviews-summary-note strong,
.reviews-section-heading > p,
.review-placeholder blockquote {
  overflow-wrap: anywhere;
}

.reviews-hero-copy a {
  display: inline-flex;
  gap: 14px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(232, 202, 134, .5);
  color: #e8ca86;
  font-size: 13px;
  font-weight: 700;
}

.reviews-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, .6fr)) minmax(280px, 1.25fr);
  margin-top: 55px;
  border: 1px solid rgba(222, 185, 104, .2);
}

.reviews-summary > div {
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 25px 30px;
  border-right: 1px solid rgba(255, 255, 255, .09);
  background: rgba(8, 26, 49, .72);
}

.reviews-summary > div:last-child { border-right: 0; }
.reviews-summary strong {
  color: #e8ca86;
  font: 500 clamp(28px, 3vw, 44px) "Playfair Display", serif;
}

.reviews-summary span {
  color: #9eabbc;
  font-size: 10px;
  letter-spacing: .1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.reviews-summary-note strong {
  color: #f4efe6;
  font: 500 18px/1.35 "Manrope", sans-serif;
}

.reviews-showcase {
  margin-top: 22px;
  padding: clamp(35px, 5vw, 70px);
  color: #07182e;
  background:
    radial-gradient(circle at 95% 4%, rgba(207, 164, 79, .19), transparent 25%),
    #f4efe6;
}

.reviews-section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, .55fr);
  align-items: end;
  gap: 50px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(7, 24, 46, .15);
}

.reviews-section-heading .section-eyebrow { color: #a5792c; }
.reviews-section-heading h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 4.3vw, 67px);
  font-weight: 500;
  line-height: 1;
}

.reviews-section-heading > p {
  margin: 0;
  color: #626d7c;
  font-size: 14px;
  line-height: 1.7;
}

.review-placeholder-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 14px;
  margin-top: 38px;
}

.review-placeholder {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(7, 24, 46, .16);
  background: rgba(255, 255, 255, .42);
}

.review-placeholder-featured {
  color: #f8f3e8;
  border-color: #07182e;
  background: #07182e;
}

.review-placeholder-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: #a5792c;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.review-placeholder-top b {
  color: #cda556;
  font-size: 12px;
  letter-spacing: .08em;
}

.review-placeholder blockquote {
  margin: 55px 0;
  color: #344155;
  font: 500 clamp(22px, 2vw, 30px)/1.45 "Playfair Display", serif;
}

.review-placeholder-featured blockquote { color: #f5f0e7; }

.review-placeholder footer {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-avatar {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(169, 121, 44, .42);
  border-radius: 50%;
  color: #a5792c;
  font-size: 9px;
  text-transform: uppercase;
}

.review-placeholder footer div { display: grid; gap: 4px; }
.review-placeholder footer strong { font-size: 12px; }
.review-placeholder footer small { color: #7d8795; font-size: 10px; }
.review-placeholder-featured footer small { color: #99a7b9; }

.reviews-publish-note {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 14px;
  padding: 25px 30px;
  border: 1px solid rgba(7, 24, 46, .15);
}

.reviews-publish-note > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid #b4893e;
  border-radius: 50%;
  color: #a5792c;
  font-family: Georgia, serif;
}

.reviews-publish-note p { margin: 0; color: #687383; font-size: 13px; line-height: 1.6; }
.reviews-publish-note strong { display: block; color: #07182e; font-size: 14px; }

.leave-review-section {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(380px, 1fr);
  gap: clamp(45px, 8vw, 130px);
  margin-top: 22px;
  padding: clamp(40px, 6vw, 80px);
  border: 1px solid rgba(222, 185, 104, .2);
  background: rgba(8, 26, 49, .82);
}

.leave-review-copy h2 {
  margin: 0 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
}

.leave-review-copy > p:not(.section-eyebrow) {
  color: #aab5c4;
  font-size: 15px;
  line-height: 1.75;
}

.leave-review-copy ul {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  color: #c2ccd8;
  font-size: 12px;
  list-style: none;
}

.leave-review-copy li::before { content: "✓"; margin-right: 10px; color: #d9b96f; }

.review-form {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.review-form > label { min-width: 0; display: grid; gap: 8px; }
.review-form > label:nth-of-type(4),
.review-form > button,
.review-form-status { grid-column: 1 / -1; }

.review-form label > span,
.review-form legend {
  color: #c4cedb;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(231, 202, 139, .22);
  outline: 0;
  color: #f8f6ef;
  background: rgba(255, 255, 255, .045);
  resize: vertical;
}

.review-form select option { color: #07182e; }
.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus { border-color: #deb968; }

.review-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.review-rating { display: flex; gap: 7px; margin-top: 8px; }
.review-rating label { cursor: pointer; }
.review-rating input { position: absolute; opacity: 0; pointer-events: none; }
.review-rating span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(231, 202, 139, .3);
  color: #d8bf86;
}

.review-rating input:checked + span {
  color: #07182e;
  border-color: #deb968;
  background: #deb968;
}

.review-form button {
  min-height: 56px;
  border: 0;
  color: #07182e;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  cursor: pointer;
  font-weight: 800;
}

.review-form button:disabled { opacity: .7; cursor: wait; }
.review-form-status { min-height: 20px; margin: 0; font-size: 13px; }
.review-form-status.is-success { color: #a7dfb1; }
.review-form-status.is-error { color: #ffb1a8; }

@media (max-width: 1050px) {
  .reviews-hero,
  .reviews-section-heading,
  .leave-review-section { grid-template-columns: 1fr; }
  .reviews-summary { grid-template-columns: repeat(3, 1fr); }
  .reviews-summary-note { grid-column: 1 / -1; }
  .review-placeholder-grid { grid-template-columns: 1fr 1fr; }
  .review-placeholder-featured { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .reviews-main {
    width: calc(100% - 28px);
    padding: 48px 0 60px;
  }
  .reviews-hero { gap: 25px; }
  .reviews-hero h1 { font-size: clamp(38px, 10.5vw, 48px); line-height: 1; overflow-wrap: anywhere; }
  .reviews-section-heading h2 { font-size: clamp(36px, 10vw, 46px); overflow-wrap: anywhere; }
  .reviews-summary { grid-template-columns: 1fr; }
  .reviews-summary-note { grid-column: auto; }
  .reviews-summary > div { min-height: 105px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.09); }
  .reviews-showcase { padding: 32px 18px 18px; }
  .review-placeholder-grid { grid-template-columns: 1fr; }
  .review-placeholder,
  .review-placeholder-featured { grid-column: auto; min-height: 330px; }
  .reviews-publish-note { align-items: flex-start; padding: 22px 18px; }
  .leave-review-section { padding: 32px 20px; }
  .review-form { grid-template-columns: 1fr; }
  .review-form > label:nth-of-type(4),
  .review-form > button,
  .review-form-status { grid-column: auto; }
}

/* Services */
.services-section {
  position: relative;
  width: min(1480px, calc(100% - 7vw));
  margin: 90px auto;
  padding: clamp(48px, 6vw, 88px);
  overflow: hidden;
  border-radius: 36px;
  color: #07182e;
  background:
    radial-gradient(circle at 92% 8%, rgba(205, 165, 86, .2), transparent 27%),
    linear-gradient(145deg, #faf7f0, #eee8dc);
}

.services-section::after {
  content: "BN";
  position: absolute;
  right: -24px;
  bottom: -95px;
  color: rgba(7, 24, 46, .035);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(220px, 28vw, 430px);
  line-height: 1;
  pointer-events: none;
}

.services-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .7fr);
  align-items: end;
  gap: clamp(40px, 8vw, 130px);
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(7, 24, 46, .14);
}

.services-heading .section-eyebrow { color: #a5792c; }

.services-heading h2 {
  margin: 12px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 5.2vw, 78px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.035em;
}

.services-intro {
  margin: 0;
  color: #596474;
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.75;
}

.services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.service-card {
  grid-column: span 2;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid rgba(7, 24, 46, .14);
  background: rgba(255, 255, 255, .36);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.service-card:nth-child(4),
.service-card:nth-child(5) { grid-column: span 3; }

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(169, 124, 43, .55);
  background: rgba(255, 255, 255, .68);
}

.service-card-featured {
  color: #f8f3e8;
  border-color: #0c294a;
  background: linear-gradient(145deg, #0d2a4b, #06182f);
}

.service-number {
  color: #b4893e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.service-card p {
  margin: 0 0 8px;
  color: #a5792c;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0 0 13px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(23px, 2vw, 31px);
  font-weight: 500;
  line-height: 1.08;
}

.service-card div > span {
  color: #65707e;
  font-size: 13px;
  line-height: 1.6;
}

.service-card-featured div > span { color: #aeb9c7; }

.services-assurance {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(250px, 330px);
  align-items: center;
  gap: clamp(28px, 4vw, 60px);
  margin-top: 14px;
  padding: clamp(28px, 4vw, 52px);
  color: #f8f3e8;
  background: #07182e;
}

.services-assurance-mark {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(225, 190, 116, .48);
  border-radius: 50%;
  color: #e1be74;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.services-assurance-copy > p {
  margin: 0 0 9px;
  color: #d9b96f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.services-assurance-copy h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(26px, 2.6vw, 39px);
  font-weight: 500;
  line-height: 1.12;
}

.services-assurance-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 22px 0 0;
  padding: 0;
  color: #abb6c8;
  font-size: 11px;
  list-style: none;
}

.services-assurance-copy li::before {
  content: "✓";
  margin-right: 8px;
  color: #d9b96f;
}

.services-actions {
  display: grid;
  gap: 10px;
}

.services-actions a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.services-actions img { width: 21px; height: 21px; }
.services-call {
  color: #07182e;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.services-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201, 164, 92, .2);
}
.services-consultation { border: 1px solid rgba(225, 190, 116, .65); color: #e8ca86; }
.services-consultation:hover {
  transform: translateY(-2px);
  background: rgba(201, 164, 92, .08);
}
.services-consultation img {
  filter: invert(84%) sepia(36%) saturate(625%) hue-rotate(356deg) brightness(94%);
}

@media (max-width: 1000px) {
  .services-heading { grid-template-columns: 1fr; gap: 24px; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) { grid-column: span 1; }
  .service-card:last-child { grid-column: 1 / -1; }
  .services-assurance { grid-template-columns: auto 1fr; }
  .services-actions { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .services-section {
    width: calc(100% - 28px);
    margin: 58px auto 70px;
    padding: 35px 18px 18px;
    border-radius: 25px;
  }

  .services-heading { padding-bottom: 28px; }
  .services-heading h2 { font-size: clamp(38px, 12vw, 52px); }
  .services-grid { grid-template-columns: 1fr; margin-top: 18px; }
  .service-card,
  .service-card:last-child { grid-column: auto; min-height: 205px; padding: 22px; }
  .services-assurance { grid-template-columns: 1fr; padding: 26px 22px; }
  .services-assurance-mark { width: 64px; height: 64px; }
  .services-actions { grid-column: auto; grid-template-columns: 1fr; }
}

/* Catalog */
.catalog-section {
  position: relative;
  width: min(1760px, calc(100% - 9vw));
  margin: 84px auto 110px;
  padding: 58px;
  overflow: hidden;
  border: 1px solid rgba(220, 182, 103, .16);
  border-radius: 38px;
  background:
    radial-gradient(circle at 88% 2%, rgba(207, 164, 79, .12), transparent 30%),
    linear-gradient(145deg, rgba(8, 25, 47, .98), rgba(3, 14, 29, .98));
  box-shadow: 0 44px 100px rgba(0, 0, 0, .28);
}

.catalog-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 25%, rgba(255, 224, 161, .035) 48%, transparent 68%);
}

.catalog-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 38px;
}

.section-eyebrow {
  margin: 0 0 13px;
  color: #dabb76;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.catalog-heading h2 {
  max-width: 820px;
  margin: 0;
  color: #f6f1e8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(35px, 3vw, 58px);
  font-weight: 400;
  line-height: 1.05;
}

.catalog-intro {
  margin: 16px 0 0;
  color: rgba(225, 231, 239, .62);
  font-size: 15px;
}

.catalog-meta {
  display: flex;
  align-items: end;
  gap: 26px;
  color: rgba(229, 235, 243, .64);
  font-size: 12px;
}

.catalog-sort {
  display: grid;
  gap: 8px;
  color: rgba(229, 235, 243, .5);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.catalog-sort select {
  min-width: 210px;
  padding: 12px 36px 12px 15px;
  border: 1px solid rgba(220, 182, 103, .28);
  border-radius: 12px;
  color: #f3ede2;
  background: #091a31;
  font: inherit;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
}

.catalog-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.property-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(220, 182, 103, .22);
  border-radius: 25px;
  background: linear-gradient(155deg, rgba(18, 39, 66, .95), rgba(6, 20, 39, .98));
  box-shadow: 0 24px 50px rgba(0, 0, 0, .3);
  transition: transform .55s cubic-bezier(.2, .7, .2, 1), border-color .4s ease, box-shadow .4s ease;
}

.property-card:hover {
  transform: translateY(-7px);
  border-color: rgba(226, 190, 114, .52);
  box-shadow: 0 34px 70px rgba(0, 0, 0, .42), 0 0 32px rgba(208, 166, 82, .08);
}

.property-image {
  position: relative;
  display: block;
  height: clamp(250px, 21vw, 370px);
  overflow: hidden;
  background: #071327;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}

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

.property-image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 8, 18, .08), transparent 46%, rgba(3, 13, 28, .78));
}

.property-badges {
  position: absolute;
  top: 18px;
  left: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.property-badges b,
.property-kind {
  padding: 8px 11px;
  border: 1px solid rgba(238, 201, 126, .44);
  border-radius: 999px;
  color: #f1d792;
  background: rgba(5, 17, 34, .74);
  backdrop-filter: blur(12px);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.property-kind {
  position: absolute;
  right: 18px;
  bottom: 17px;
  color: rgba(255, 255, 255, .82);
  border-color: rgba(255, 255, 255, .18);
}

.property-body { padding: 25px 25px 27px; }

.property-location {
  margin-bottom: 9px;
  color: #d9b96f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.property-body h3 {
  min-height: 58px;
  margin: 0;
  color: #f6f1e9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 1.45vw, 28px);
  font-weight: 400;
  line-height: 1.15;
}

.property-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 21px 0 25px;
  color: rgba(222, 229, 238, .58);
  font-size: 11px;
}

.property-features span + span::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  margin: 0 14px 3px 0;
  border-radius: 50%;
  background: #cda556;
}

.property-features strong { color: #f1eee7; font-weight: 600; }

.property-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.property-footer > strong {
  min-width: 0;
  color: #edcf8b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
  white-space: nowrap;
}

.property-footer a {
  box-sizing: border-box;
  flex: 0 0 auto;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(222, 185, 104, .62);
  color: #edcf8b;
  background: rgba(222, 185, 104, .035);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}

.property-footer a:hover {
  border-color: #edcf8b;
  color: #07182e;
  background: #deb968;
  transform: translateY(-1px);
}

.property-footer a:focus-visible {
  outline: 2px solid #edcf8b;
  outline-offset: 3px;
}

.property-footer a span {
  color: currentColor;
  font-size: 15px;
}

.property-card-skeleton {
  height: 540px;
  border-color: rgba(255, 255, 255, .06);
  background: linear-gradient(100deg, #091a31 20%, #102947 38%, #091a31 56%);
  background-size: 220% 100%;
  animation: catalog-loading 1.6s ease infinite;
}

.catalog-empty {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  padding: 65px 24px;
  border: 1px dashed rgba(218, 183, 111, .25);
  border-radius: 24px;
  text-align: center;
}

.catalog-empty[hidden] { display: none; }

.catalog-empty-mark {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 19px;
  place-items: center;
  border: 1px solid rgba(224, 188, 112, .42);
  border-radius: 50%;
  color: #e3c17a;
  font-family: Georgia, "Times New Roman", serif;
}

.catalog-empty strong { color: #f4efe6; font-size: 20px; }
.catalog-empty > span:not(.catalog-empty-mark) { margin: 10px 0 22px; color: rgba(225, 232, 240, .58); }

.catalog-empty button {
  padding: 12px 19px;
  border: 1px solid #cda85f;
  color: #ead18f;
  background: transparent;
  cursor: pointer;
}

.featured-catalog-action {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.home-featured .catalog-meta,
.home-featured .catalog-empty {
  display: none;
}

.featured-catalog-action a {
  min-width: min(100%, 390px);
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 24px;
  border: 1px solid rgba(226, 190, 114, .65);
  color: #edcf8b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.featured-catalog-action a:hover {
  color: #07182e;
  background: #deb968;
  transform: translateY(-2px);
}

.catalog-pagination {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 42px;
}

.catalog-pagination[hidden] { display: none; }

.catalog-pagination button {
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(222, 185, 104, .34);
  color: #d9c18d;
  background: rgba(9, 26, 49, .78);
  cursor: pointer;
  font-weight: 700;
}

.catalog-pagination button[aria-current="page"] {
  border-color: #deb968;
  color: #07182e;
  background: #deb968;
}

.catalog-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 0, rgba(204, 163, 79, .12), transparent 30%),
    #03132b;
}

.catalog-page-header {
  position: relative;
  z-index: 10;
  width: calc(100% - 2 * clamp(24px, 5vw, 96px));
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.catalog-page-intro {
  width: min(1760px, calc(100% - 9vw));
  margin: 0 auto;
  padding: clamp(55px, 7vw, 105px) 0 38px;
}

.catalog-page-intro h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(50px, 6vw, 92px);
}

.catalog-page-intro > p:last-child {
  max-width: 680px;
  margin: 20px 0 0;
  color: #abb6c8;
  font-size: 16px;
  line-height: 1.7;
}

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

.catalog-page-results {
  margin-top: 46px;
}

@keyframes catalog-loading {
  to { background-position-x: -220%; }
}

@media (max-width: 1100px) {
  .catalog-section { width: calc(100% - 5vw); padding: 38px; }
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .catalog-page-header {
    width: calc(100% - 40px);
    height: 82px;
  }

  .catalog-page-intro {
    width: calc(100% - 40px);
    padding: 48px 0 25px;
  }

  .catalog-page-intro h1 { font-size: 48px; }
  .catalog-search-panel { margin-top: 0; }

  .catalog-section {
    width: calc(100% - 28px);
    margin: 42px auto 70px;
    padding: 28px 18px;
    border-radius: 25px;
  }

  .catalog-heading { align-items: start; flex-direction: column; gap: 22px; }
  .catalog-meta { width: 100%; align-items: center; justify-content: space-between; }
  .catalog-sort select { min-width: 170px; }
  .catalog-grid { grid-template-columns: 1fr; }
  .property-image { height: 265px; }
  .property-body h3 { min-height: 0; }
  .property-footer { gap: 10px; }
  .property-footer > strong { font-size: clamp(19px, 5.7vw, 23px); }
  .property-footer a {
    min-height: 42px;
    padding: 0 11px;
    font-size: 10px;
    letter-spacing: .035em;
  }
}

/* Cinematic property collage */
.hero-showcase {
  --showcase-x: 0;
  --showcase-y: 0;
  position: absolute;
  z-index: 2;
  top: 96px;
  right: clamp(62px, 7.5vw, 142px);
  width: min(43.5vw, 630px);
  height: min(64vh, 610px);
  isolation: isolate;
  perspective: 1400px;
}

.showcase-ambient {
  position: absolute;
  z-index: -3;
  inset: -4% -10% -10%;
  border-radius: 48%;
  background:
    radial-gradient(circle at 58% 35%, rgba(247, 216, 151, .36), transparent 28%),
    radial-gradient(circle at 65% 24%, rgba(239, 203, 130, .3), transparent 32%),
    radial-gradient(circle at 18% 72%, rgba(183, 134, 51, .22), transparent 38%),
    linear-gradient(135deg, rgba(15, 39, 67, .55), rgba(3, 11, 25, .08));
  filter: blur(38px);
  animation: showcase-glow 6s ease-in-out infinite;
}

.showcase-orbit {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(226, 190, 117, .17);
  border-radius: 50%;
  pointer-events: none;
}

.showcase-orbit::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #f0cf88;
  box-shadow: 0 0 16px rgba(240, 207, 136, .8);
}

.showcase-orbit-one {
  width: 360px;
  height: 360px;
  top: 3%;
  right: -13%;
  transform: rotate(-18deg);
}

.showcase-orbit-one::after { top: 16%; left: 9%; }

.showcase-orbit-two {
  width: 240px;
  height: 240px;
  left: -9%;
  bottom: 0;
  opacity: .7;
  transform: rotate(28deg);
}

.showcase-orbit-two::after { right: 6%; bottom: 25%; }

.showcase-skyline {
  position: absolute;
  z-index: -1;
  right: -2%;
  bottom: 2%;
  width: 78%;
  height: 35%;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  opacity: .2;
  filter: drop-shadow(0 0 10px rgba(212, 174, 98, .18));
  transform: translate3d(calc(var(--showcase-x) * -7px), calc(var(--showcase-y) * -5px), 0);
  transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}

.showcase-skyline span {
  flex: 1;
  border: 1px solid rgba(232, 202, 141, .48);
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(206, 169, 93, .08), transparent);
}

.showcase-skyline span:nth-child(1) { height: 34%; }
.showcase-skyline span:nth-child(2) { height: 62%; }
.showcase-skyline span:nth-child(3) { height: 43%; }
.showcase-skyline span:nth-child(4) { height: 82%; }
.showcase-skyline span:nth-child(5) { height: 56%; }
.showcase-skyline span:nth-child(6) { height: 72%; }

.showcase-stage {
  position: relative;
  width: 100%;
  height: 100%;
  transform: rotateX(calc(var(--showcase-y) * -3deg)) rotateY(calc(var(--showcase-x) * 4deg));
  transform-style: preserve-3d;
  transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}

.showcase-main {
  position: absolute;
  inset: 2% 1% 10% 3%;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(234, 203, 139, .35);
  border-radius: 34px 34px 76px 34px;
  background: rgba(5, 17, 34, .72);
  box-shadow:
    0 45px 95px rgba(0, 0, 0, .55),
    0 0 46px rgba(197, 151, 67, .09),
    inset 0 1px 0 rgba(255, 255, 255, .14);
  backdrop-filter: blur(18px);
  transform: translate3d(calc(var(--showcase-x) * 7px), calc(var(--showcase-y) * 6px), 0);
  transition: transform .8s cubic-bezier(.2, .7, .2, 1), box-shadow .8s ease;
}

.showcase-main::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 10px;
  border: 1px solid rgba(244, 218, 162, .15);
  border-radius: 23px 23px 75px 23px;
  pointer-events: none;
}

.showcase-main img,
.showcase-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-main img {
  object-position: 50% 42%;
  transform: scale(1.025);
  filter: brightness(1.1) contrast(1.05);
  transition: transform 1.3s cubic-bezier(.2, .7, .2, 1), filter .8s ease;
}

.showcase-main-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 13, 28, 0) 50%, rgba(3, 11, 24, .62) 100%),
    linear-gradient(105deg, rgba(4, 13, 29, .08), transparent 52%);
}

.showcase-light-sweep {
  position: absolute;
  z-index: 2;
  top: -30%;
  bottom: -30%;
  left: -50%;
  width: 13%;
  background: linear-gradient(90deg, transparent, rgba(255, 235, 194, .09), transparent);
  filter: blur(2px);
  transform: skewX(-18deg);
  animation: showcase-sweep 6.8s ease-in-out infinite;
}

.showcase-main figcaption {
  position: absolute;
  z-index: 4;
  left: 34px;
  bottom: 82px;
  display: grid;
  gap: 5px;
  color: #fff;
}

.showcase-main figcaption span,
.showcase-float figcaption span {
  color: #ead09a;
  font-size: 8px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.showcase-main figcaption strong {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: .02em;
}

.showcase-main figcaption em {
  color: rgba(255, 255, 255, .76);
  font-size: 9px;
  font-style: normal;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.showcase-float {
  position: absolute;
  z-index: 5;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(244, 208, 132, .78);
  background: #071426;
  box-shadow:
    0 28px 66px rgba(0, 0, 0, .66),
    0 0 24px rgba(211, 166, 78, .14),
    inset 0 1px 0 rgba(255, 255, 255, .2);
  backdrop-filter: blur(12px);
  transition: box-shadow .6s ease;
}

.showcase-float::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 9, 20, .02) 28%, rgba(2, 9, 20, .7));
}

.showcase-float figcaption {
  position: absolute;
  z-index: 2;
  left: 15px;
  right: 12px;
  bottom: 12px;
  display: grid;
  gap: 3px;
  color: white;
}

.showcase-float figcaption strong {
  font-family: "Playfair Display", serif;
  font-size: 13px;
  font-weight: 500;
}

.showcase-facade {
  top: 4%;
  right: -4%;
  width: 35%;
  height: 28%;
  border-radius: 20px;
  transform: translate3d(calc(var(--showcase-x) * 17px), calc(var(--showcase-y) * 13px), 55px) rotate(2deg);
  animation: showcase-float-one 6s ease-in-out infinite;
}

.showcase-detail {
  left: 0;
  bottom: 5%;
  width: 34%;
  height: 25%;
  border-radius: 18px;
  transform: translate3d(calc(var(--showcase-x) * -13px), calc(var(--showcase-y) * -10px), 70px) rotate(-3deg);
  animation: showcase-float-two 7s ease-in-out infinite;
}

.showcase-detail img { object-position: 52% center; }

.showcase-stats {
  position: absolute;
  z-index: 7;
  right: 4%;
  bottom: 6%;
  width: 68%;
  min-height: 58px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(232, 201, 137, .22);
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(7, 20, 38, .76), rgba(9, 25, 44, .5));
  box-shadow: 0 20px 46px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(255, 255, 255, .1);
  backdrop-filter: blur(20px) saturate(130%);
  transform: translate3d(calc(var(--showcase-x) * 11px), calc(var(--showcase-y) * 8px), 85px) translateY(20px);
  opacity: 0;
  animation: showcase-stats-up .9s .4s cubic-bezier(.2, .75, .25, 1) forwards;
}

.showcase-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e6c47d, transparent);
}

.showcase-stats span { padding: 10px 13px; }
.showcase-stats strong { font-size: 19px; }
.showcase-stats small { font-size: 7px; letter-spacing: .03em; }

.hero-showcase:hover .showcase-main {
  box-shadow: 0 52px 110px rgba(0, 0, 0, .6), 0 0 58px rgba(211, 166, 78, .16);
}

.hero-showcase:hover .showcase-main img {
  transform: scale(1.075);
  filter: saturate(1.05) contrast(1.02);
}

.hero-showcase:hover .showcase-float {
  box-shadow: 0 34px 76px rgba(0, 0, 0, .68), 0 0 32px rgba(211, 166, 78, .2);
}

@keyframes showcase-glow {
  0%, 100% { opacity: .55; transform: scale(.96) translate(-6px, 5px); }
  50% { opacity: .94; transform: scale(1.06) translate(7px, -6px); }
}

@keyframes showcase-sweep {
  0%, 58% { left: -50%; opacity: 0; }
  68% { opacity: .42; }
  86%, 100% { left: 130%; opacity: 0; }
}

@keyframes showcase-float-one {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -9px; }
}

@keyframes showcase-float-two {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 8px; }
}

@keyframes showcase-stats-up {
  to { opacity: 1; transform: translate3d(calc(var(--showcase-x) * 11px), calc(var(--showcase-y) * 8px), 85px) translateY(0); }
}

@media (max-width: 1120px) {
  .hero-showcase {
    right: 3vw;
    width: 42vw;
    opacity: .96;
  }
}

@media (max-width: 760px) {
  .hero-showcase {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: clamp(390px, 108vw, 460px);
    margin-top: 34px;
    opacity: 1;
  }

  .showcase-main {
    inset: 3% 1% 15% 2%;
    border-radius: 24px 24px 58px 24px;
  }

  .showcase-main img {
    object-position: 50% 40%;
  }

  .showcase-main::before { border-radius: 17px 17px 50px 17px; }
  .showcase-main figcaption { left: 23px; bottom: 75px; }
  .showcase-main figcaption strong { font-size: 19px; }

  .showcase-facade {
    display: none;
  }

  .showcase-stats {
    right: 2%;
    bottom: 7%;
    width: 78%;
    min-height: 58px;
  }

  .showcase-stats span { min-width: 0; padding: 10px 7px; }
  .showcase-stats strong { font-size: 17px; }
  .showcase-stats small { font-size: 6.5px; line-height: 1.3; white-space: normal; }
  .showcase-orbit-one { right: -24%; }
  .showcase-orbit-two { left: -18%; }
  .showcase-ambient { inset: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .showcase-ambient,
  .showcase-light-sweep,
  .showcase-facade,
  .showcase-detail,
  .showcase-stats {
    animation: none;
  }

  .showcase-stats {
    opacity: 1;
    transform: none;
  }

  .showcase-stage,
  .showcase-main,
  .showcase-skyline {
    transform: none;
    transition: none;
  }
}
