.hnre-section {
  --hnre-gold: #c8993e;
  --hnre-gold-light: #e4b86a;
  --hnre-gold-dark: #a07828;
  --hnre-navy: #0f1f3d;
  --hnre-navy-light: #1a3260;
  --hnre-navy-dark: #080f1e;
  --hnre-white: #ffffff;
  --hnre-text-soft: rgba(255,255,255,0.68);
  --hnre-border: rgba(255,255,255,0.09);
  --hnre-shadow: 0 24px 70px rgba(0,0,0,0.28);
  position: relative;
  padding: 96px 0;
  background:
    radial-gradient(circle at top right, rgba(200,153,62,0.12), transparent 26%),
    linear-gradient(135deg, var(--hnre-navy-dark) 0%, var(--hnre-navy) 55%, var(--hnre-navy-light) 100%);
  overflow: hidden;
  color: var(--hnre-white);
}

.hnre-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,153,62,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,153,62,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.hnre-container {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.hnre-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.hnre-badge {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(200,153,62,0.12);
  border: 1px solid rgba(200,153,62,0.28);
  color: var(--hnre-gold-light);
  font-size: 14px;
  letter-spacing: .3px;
  margin-bottom: 18px;
}

.hnre-heading h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.12;
  color: var(--hnre-white);
  margin: 0 0 14px;
}

.hnre-heading h2 span {
  color: var(--hnre-gold-light);
}

.hnre-heading p {
  color: var(--hnre-text-soft);
  line-height: 1.85;
  font-size: 17px;
  margin: 0;
}

.hnre-global-message {
  max-width: 960px;
  margin: 0 auto 28px;
  padding: 16px 18px;
  border-radius: 16px;
  font-weight: 600;
}

.hnre-global-message.success {
  background: rgba(46, 182, 125, 0.12);
  color: #9cf2cb;
  border: 1px solid rgba(46, 182, 125, 0.28);
}

.hnre-global-message.error {
  background: rgba(217, 83, 79, 0.12);
  color: #ffc4bf;
  border: 1px solid rgba(217, 83, 79, 0.24);
}

.hnre-layout {
  display: grid;
  grid-template-columns: .95fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.hnre-panel,
.hnre-form-shell,
.hnre-preview-shell,
.hnre-property-card,
.hnre-empty-grid {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 28px;
  box-shadow: var(--hnre-shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hnre-panel,
.hnre-form-shell,
.hnre-preview-shell {
  padding: 28px;
}

.hnre-panel h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.25;
  margin: 0 0 14px;
}

.hnre-panel > p {
  color: var(--hnre-text-soft);
  line-height: 1.85;
  font-size: 15px;
  margin-bottom: 24px;
}

.hnre-benefits {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.hnre-benefit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.hnre-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--hnre-gold), var(--hnre-gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hnre-white);
  flex-shrink: 0;
  box-shadow: 0 12px 30px rgba(200,153,62,0.28);
}

.hnre-benefit-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  color: var(--hnre-white);
}

.hnre-benefit-item p {
  margin: 0;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  font-size: 14px;
}

.hnre-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hnre-mini-stats div {
  padding: 18px 12px;
  border-radius: 18px;
  text-align: center;
  background: linear-gradient(180deg, rgba(200,153,62,0.16), rgba(255,255,255,0.04));
  border: 1px solid rgba(200,153,62,0.18);
}

.hnre-mini-stats strong {
  display: block;
  color: var(--hnre-gold-light);
  font-size: 22px;
  margin-bottom: 6px;
}

.hnre-mini-stats span {
  display: block;
  color: rgba(255,255,255,0.62);
  font-size: 12px;
  line-height: 1.4;
}

.hnre-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.hnre-step {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: rgba(255,255,255,0.62);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  transition: .25s ease;
}

.hnre-step.active {
  color: var(--hnre-gold-light);
  border-color: rgba(200,153,62,0.34);
  background: rgba(200,153,62,0.14);
}

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

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

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

.hnre-field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--hnre-white);
}

.hnre-field input,
.hnre-field select,
.hnre-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--hnre-border);
  background: rgba(8,15,30,0.88);
  color: var(--hnre-white);
  outline: none;
  transition: .25s ease;
  font-size: 15px;
  line-height: 1.4;
}

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

.hnre-field input::placeholder,
.hnre-field textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.hnre-field input:focus,
.hnre-field select:focus,
.hnre-field textarea:focus {
  border-color: rgba(200,153,62,0.65);
  box-shadow: 0 0 0 4px rgba(200,153,62,0.12);
}

.hnre-char-count {
  text-align: right;
  color: rgba(255,255,255,0.52);
  font-size: 12px;
}

.hnre-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.hnre-check-grid label,
.hnre-confirm {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255,255,255,0.68);
  font-size: 14px;
  line-height: 1.6;
}

.hnre-check-grid input,
.hnre-confirm input {
  width: auto;
  accent-color: var(--hnre-gold);
  margin-top: 3px;
}

.hnre-upload-zone {
  border: 1.5px dashed rgba(200,153,62,0.45);
  background: linear-gradient(180deg, rgba(200,153,62,0.12), rgba(255,255,255,0.03));
  border-radius: 20px;
  padding: 26px;
  text-align: center;
  cursor: pointer;
  transition: .25s ease;
}

.hnre-upload-zone:hover,
.hnre-upload-zone.dragover {
  transform: translateY(-2px);
  border-color: var(--hnre-gold-light);
  background: linear-gradient(180deg, rgba(200,153,62,0.18), rgba(255,255,255,0.05));
}

.hnre-upload-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  background: rgba(255,255,255,0.08);
  color: var(--hnre-gold-light);
  font-size: 28px;
}

.hnre-upload-zone p {
  margin: 0 0 6px;
  font-weight: 600;
  color: var(--hnre-white);
}

.hnre-upload-zone p span {
  color: var(--hnre-gold-light);
}

.hnre-upload-zone small {
  color: rgba(255,255,255,0.55);
  font-size: 12px;
}

.hnre-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(105px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.hnre-thumb {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 96px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.hnre-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hnre-thumb button {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: rgba(8,15,30,0.82);
  color: var(--hnre-white);
  cursor: pointer;
}

.hnre-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hnre-btn {
  border: none;
  border-radius: 16px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: .25s ease;
}

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

.hnre-btn-primary {
  background: linear-gradient(135deg, var(--hnre-gold), var(--hnre-gold-dark));
  color: var(--hnre-white);
  box-shadow: 0 14px 30px rgba(200,153,62,0.28);
}

.hnre-btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--hnre-white);
  border: 1px solid rgba(255,255,255,0.10);
}

.hnre-btn-outline {
  background: transparent;
  color: var(--hnre-gold-light);
  border: 1px solid rgba(200,153,62,0.34);
}

.hnre-form-message {
  min-height: 22px;
  margin-top: 14px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}

.hnre-form-message.error {
  color: #ffc4bf;
}

.hnre-form-message.success {
  color: #a8f3ce;
}

.hnre-preview-shell {
  margin-top: 30px;
}

.hnre-preview-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hnre-preview-head h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin: 0;
}

.hnre-preview-head span {
  color: rgba(255,255,255,0.54);
  font-size: 13px;
}

.hnre-preview-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 24px;
  align-items: stretch;
}

.hnre-preview-media {
  position: relative;
  min-height: 330px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}

.hnre-preview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hnre-preview-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(8,15,30,0.78);
  color: var(--hnre-gold-light);
  border: 1px solid rgba(200,153,62,0.28);
  font-size: 13px;
}

.hnre-preview-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hnre-preview-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.56);
  margin-bottom: 12px;
  font-size: 14px;
}

.hnre-preview-body h4 {
  margin: 0 0 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.28;
}

.hnre-preview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.hnre-preview-stats div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.hnre-preview-stats strong {
  display: block;
  color: var(--hnre-gold-light);
  font-size: 16px;
  margin-bottom: 4px;
}

.hnre-preview-stats span {
  color: rgba(255,255,255,0.52);
  font-size: 12px;
}

#hn_preview_desc {
  color: rgba(255,255,255,0.68);
  line-height: 1.85;
  font-size: 15px;
  margin-bottom: 18px;
}

.hnre-preview-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  color: var(--hnre-white);
  font-size: 14px;
}

.hnre-property-grid {
  display: grid;
  grid-template-columns: repeat(var(--hnre-columns, 3), minmax(0, 1fr));
  gap: 20px;
}

.hnre-property-card {
  overflow: hidden;
}

.hnre-property-thumb {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
}

.hnre-property-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hnre-property-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(8,15,30,0.8);
  color: var(--hnre-gold-light);
  font-size: 12px;
}

.hnre-property-content {
  padding: 18px;
}

.hnre-property-content h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-size: 22px;
}

.hnre-property-content h3 a {
  color: var(--hnre-white);
  text-decoration: none;
}

.hnre-property-location {
  color: rgba(255,255,255,0.62);
  margin-bottom: 12px;
}

.hnre-property-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.62);
  font-size: 14px;
}

.hnre-property-stats strong {
  color: var(--hnre-gold-light);
}

.hnre-empty-grid {
  padding: 18px;
  color: rgba(255,255,255,0.68);
}

@media (max-width: 1100px) {
  .hnre-layout,
  .hnre-preview-card,
  .hnre-property-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hnre-section {
    padding: 72px 0;
  }

  .hnre-panel,
  .hnre-form-shell,
  .hnre-preview-shell {
    padding: 20px;
  }

  .hnre-grid,
  .hnre-check-grid,
  .hnre-mini-stats,
  .hnre-preview-stats,
  .hnre-property-grid {
    grid-template-columns: 1fr;
  }

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

  .hnre-btn {
    width: 100%;
  }
}

.hnre-section-alt {
  padding-top: 72px;
}

.hnre-heading-left {
  text-align: left;
  margin-inline: 0;
  max-width: 860px;
}

.hnre-center {
  margin-top: 28px;
  text-align: center;
}

.hnre-home-band {
  position: relative;
  padding: 42px 0 8px;
  background: linear-gradient(180deg, rgba(8,15,30,0), rgba(8,15,30,0.24));
}

.hnre-home-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 22px;
}

.hnre-home-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.18);
}

.hnre-home-card h2 {
  margin: 0 0 14px;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.18;
}

.hnre-home-card p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
}

.hnre-home-card-highlight {
  background: linear-gradient(180deg, rgba(200,153,62,0.18), rgba(255,255,255,0.05));
}

.hnre-home-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  color: #fff;
}

.hnre-home-feature + .hnre-home-feature {
  border-top: 1px solid rgba(255,255,255,0.09);
}

.hnre-home-feature strong {
  min-width: 42px;
  color: var(--hnre-gold-light);
  font-size: 20px;
}

.hnre-nav-item > .hnre-nav-link {
  position: relative;
}

.hnre-nav-item-outline > .hnre-nav-link,
.nav-links .hnre-nav-link,
.menu .hnre-nav-link {
  padding-inline: 14px;
}

.hnre-nav-item-outline > .hnre-nav-link {
  border: 1px solid rgba(200,153,62,0.36);
  border-radius: 999px;
}

.hnres-single,
.hnres-archive-page {
  --hnres-bg: #08101f;
  --hnres-card: rgba(255,255,255,0.06);
  --hnres-border: rgba(255,255,255,0.09);
  --hnres-text: rgba(255,255,255,0.74);
  --hnres-white: #fff;
  --hnres-gold: #d2a550;
  color: var(--hnres-white);
  background:
    radial-gradient(circle at top left, rgba(200,153,62,0.12), transparent 24%),
    linear-gradient(135deg, #07101c 0%, #0d1e39 45%, #132c54 100%);
}

.hnres-container {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
}

.hnres-hero,
.hnres-archive-hero {
  padding: 86px 0 34px;
}

.hnres-breadcrumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.56);
  font-size: 14px;
  margin-bottom: 24px;
}

.hnres-breadcrumbs a,
.hnres-map-link,
.hnres-pagination a,
.hnres-pagination span {
  color: var(--hnres-white);
  text-decoration: none;
}

.hnres-hero-grid,
.hnres-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 26px;
  align-items: start;
}

.hnres-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(200,153,62,0.14);
  border: 1px solid rgba(200,153,62,0.28);
  color: #f0cb8d;
  margin-bottom: 18px;
  font-size: 14px;
}

.hnres-hero h1,
.hnres-archive-hero h1 {
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
}

.hnres-hero p,
.hnres-archive-hero p {
  margin: 0;
  max-width: 780px;
  color: var(--hnres-text);
  line-height: 1.8;
}

.hnres-hero-stats,
.hnres-contact-card,
.hnres-gallery-card,
.hnres-detail-card,
.hnres-filter-bar {
  background: var(--hnres-card);
  border: 1px solid var(--hnres-border);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.24);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hnres-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 22px;
}

.hnres-hero-stats div,
.hnres-spec-grid div,
.hnres-contact-list div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}

.hnres-hero-stats strong,
.hnres-spec-grid strong,
.hnres-contact-list strong {
  display: block;
  color: var(--hnres-gold);
  margin-bottom: 6px;
  font-size: 18px;
}

.hnres-hero-stats span,
.hnres-spec-grid span,
.hnres-contact-list span,
.hnres-archive-count {
  color: rgba(255,255,255,0.64);
  font-size: 14px;
}

.hnres-body,
.hnres-archive-body,
.hnres-related {
  padding: 8px 0 88px;
}

.hnres-main,
.hnres-sidebar {
  display: grid;
  gap: 24px;
}

.hnres-gallery-main {
  overflow: hidden;
  border-radius: 22px;
}

.hnres-gallery-main img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.hnres-gallery-card {
  padding: 20px;
}

.hnres-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.hnres-thumb {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 18px;
  padding: 0;
  background: transparent;
  overflow: hidden;
  cursor: pointer;
}

.hnres-thumb.active {
  border-color: rgba(200,153,62,0.6);
  box-shadow: 0 10px 24px rgba(200,153,62,0.18);
}

.hnres-thumb img {
  width: 100%;
  height: 86px;
  object-fit: cover;
  display: block;
}

.hnres-detail-card,
.hnres-contact-card,
.hnres-filter-bar {
  padding: 24px;
}

.hnres-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.hnres-card-head h2,
.hnres-contact-card h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
}

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

.hnres-content,
.hnres-contact-card p {
  color: var(--hnres-text);
  line-height: 1.85;
}

.hnres-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hnres-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(200,153,62,0.12);
  border: 1px solid rgba(200,153,62,0.22);
  color: #f4d5a1;
  font-size: 14px;
}

.hnres-map-wrap iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 20px;
}

.hnres-contact-list {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.hnres-contact-actions,
.hnres-filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hnres-btn,
.hnre-btn {
  text-decoration: none;
}

.hnres-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 16px;
  font-weight: 700;
  transition: .25s ease;
}

.hnres-btn-primary {
  background: linear-gradient(135deg, #e1b15f, #b78325);
  color: #07101c;
}

.hnres-btn-secondary {
  border: 1px solid rgba(200,153,62,0.34);
  color: var(--hnres-white);
  background: rgba(255,255,255,0.04);
}

.hnres-related-head {
  margin-bottom: 22px;
}

.hnres-related-grid,
.hnres-archive-grid {
  margin-top: 22px;
}

.hnres-filter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.hnres-filter-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hnres-filter-field label {
  color: var(--hnres-white);
  font-size: 14px;
  font-weight: 600;
}

.hnres-filter-field input,
.hnres-filter-field select {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(8,15,30,0.86);
  color: var(--hnres-white);
}

.hnres-pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 8px;
  flex-wrap: wrap;
}

.hnres-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 11px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.hnres-pagination .current {
  background: linear-gradient(135deg, #e1b15f, #b78325);
  color: #07101c;
  border-color: transparent;
}

@media (max-width: 1100px) {
  .hnre-home-grid,
  .hnres-hero-grid,
  .hnres-two-col,
  .hnres-filter-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hnres-hero,
  .hnres-archive-hero,
  .hnres-body,
  .hnres-archive-body,
  .hnres-related {
    padding-bottom: 64px;
  }

  .hnres-hero-stats,
  .hnres-spec-grid {
    grid-template-columns: 1fr;
  }

  .hnres-gallery-card,
  .hnres-detail-card,
  .hnres-contact-card,
  .hnres-filter-bar,
  .hnre-home-card {
    padding: 20px;
  }

  .hnres-contact-actions,
  .hnres-filter-actions {
    flex-direction: column;
  }

  .hnres-btn,
  .hnres-contact-actions .hnres-btn {
    width: 100%;
  }
}

.hnres-archive-status {
  min-height: 22px;
  margin-top: 14px;
  color: rgba(255,255,255,0.66);
  font-size: 14px;
}

.hnres-results-shell {
  position: relative;
  transition: opacity .2s ease;
}

.hnres-results-shell.is-loading {
  opacity: .55;
}

.hnres-results-shell.is-loading::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.16);
  border-top-color: var(--hnres-gold);
  animation: hnresSpin .8s linear infinite;
}

.hnres-filter-bar.is-loading .hnres-btn-primary {
  opacity: .8;
}

@keyframes hnresSpin {
  to { transform: rotate(360deg); }
}

/* ===== PREMIUM ARCHIVE FILTER UI ===== */
.hnres-archive-hero--premium {
  padding-bottom: 20px;
}

.hnres-filter-bar--luxury {
  padding: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
}

.hnres-filter-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.hnres-filter-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #f4d7a1;
  background: rgba(210,165,80,0.16);
  border: 1px solid rgba(210,165,80,0.28);
}

.hnres-filter-top h2 {
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.16;
}

.hnres-filter-top p {
  margin: 0;
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
  max-width: 700px;
}

.hnres-filter-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.hnres-filter-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.84);
  font-size: 14px;
}

.hnres-chip-groups {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}

.hnres-chip-group__label {
  margin-bottom: 10px;
  color: rgba(255,255,255,0.78);
  font-weight: 600;
  font-size: 14px;
}

.hnres-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hnres-filter-chip {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.76);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  transition: all .28s ease;
}

.hnres-filter-chip:hover,
.hnres-filter-chip.is-active {
  background: linear-gradient(135deg, rgba(210,165,80,0.28), rgba(210,165,80,0.16));
  border-color: rgba(210,165,80,0.48);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}

.hnres-filter-grid--luxury {
  gap: 16px;
}

.hnres-filter-field--icon label {
  display: block;
  margin-bottom: 9px;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  font-weight: 600;
}

.hnres-input-shell {
  position: relative;
}

.hnres-input-shell i {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: rgba(210,165,80,0.82);
  pointer-events: none;
}

.hnres-input-shell input,
.hnres-input-shell select {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px 14px 46px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(8,15,30,0.78);
  color: #fff;
  outline: none;
  box-shadow: inset 0 0 0 1px transparent;
  transition: all .24s ease;
}

.hnres-input-shell input::placeholder {
  color: rgba(255,255,255,0.38);
}

.hnres-input-shell input:focus,
.hnres-input-shell select:focus {
  border-color: rgba(210,165,80,0.46);
  box-shadow: 0 0 0 4px rgba(210,165,80,0.12);
}

.hnres-filter-actions--luxury {
  margin-top: 8px;
}

.hnres-filter-actions--luxury .hnres-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hnres-results-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.hnres-results-note {
  color: rgba(255,255,255,0.54);
  font-size: 14px;
}

.hnres-results-shell {
  position: relative;
}

.hnres-results-shell.is-loading::after {
  content: none;
}

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

.hnres-skeleton-card {
  border-radius: 24px;
  padding: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
}

.hnres-skeleton-media,
.hnres-skeleton-line,
.hnres-skeleton-stats span {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
}

.hnres-skeleton-media::before,
.hnres-skeleton-line::before,
.hnres-skeleton-stats span::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  animation: hnresShimmer 1.5s infinite;
}

.hnres-skeleton-media {
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  margin-bottom: 16px;
}

.hnres-skeleton-line {
  height: 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.hnres-skeleton-line--tag { width: 36%; }
.hnres-skeleton-line--title { width: 82%; height: 18px; }
.hnres-skeleton-line--meta { width: 58%; }

.hnres-skeleton-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.hnres-skeleton-stats span {
  display: block;
  height: 40px;
  border-radius: 14px;
}

@keyframes hnresShimmer {
  100% { transform: translateX(100%); }
}

@media (max-width: 1100px) {
  .hnres-filter-top,
  .hnres-results-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hnres-filter-badges {
    justify-content: flex-start;
  }

  .hnres-skeleton-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hnres-filter-bar--luxury {
    padding: 20px;
  }

  .hnres-filter-top h2 {
    font-size: 28px;
  }

  .hnres-skeleton-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== HNRE 2.1 UI refresh ===== */
.hnre-thumb{position:relative;overflow:hidden;border-radius:18px}.hnre-thumb img{display:block;width:100%;height:160px;object-fit:cover}.hnre-thumb-badge{position:absolute;top:10px;left:10px;padding:6px 10px;border-radius:999px;background:rgba(15,31,61,.92);color:#fff;font-size:11px;font-weight:700}.hnre-thumb-actions{position:absolute;left:10px;right:10px;bottom:10px;display:flex;gap:8px}.hnre-thumb-actions button{flex:1;border:none;border-radius:12px;padding:9px 10px;background:rgba(8,15,30,.82);color:#fff;font-size:12px;font-weight:700;cursor:pointer}.hnre-thumb.is-cover{box-shadow:0 0 0 2px rgba(200,153,62,.55) inset}

.hnre-property-card--modern{display:flex;flex-direction:column;overflow:hidden}.hnre-property-card--modern .hnre-property-thumb{position:relative;display:block;aspect-ratio:1.28;overflow:hidden}.hnre-property-card--modern .hnre-property-thumb img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .35s ease}.hnre-property-card--modern:hover .hnre-property-thumb img{transform:scale(1.04)}.hnre-property-card--modern .hnre-property-tag{position:absolute;left:16px;top:16px}.hnre-property-card--modern .hnre-property-tag-sub{left:auto;right:16px;background:rgba(15,31,61,.88);color:#fff}.hnre-property-card--modern .hnre-property-content{display:flex;flex-direction:column;gap:12px;padding:20px}.hnre-property-card--modern h3{margin:0;font-size:20px;line-height:1.4}.hnre-property-card--modern h3 a{color:#fff;text-decoration:none}.hnre-property-card--modern .hnre-property-location{color:rgba(255,255,255,.7);font-size:14px}.hnre-property-card--modern .hnre-property-excerpt{margin:0;color:rgba(255,255,255,.72);line-height:1.7;font-size:14px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.hnre-property-card--modern .hnre-property-stats{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}.hnre-property-card--modern .hnre-property-stats span{display:flex;flex-direction:column;gap:4px;padding:12px;border-radius:16px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08);font-size:12px;color:rgba(255,255,255,.66)}.hnre-property-card--modern .hnre-property-stats strong{font-size:15px;color:#fff}.hnre-property-card--modern .hnre-property-actions{margin-top:auto}

.hnres-archive-page--modern{background:linear-gradient(180deg,#08111f 0%,#0e1a31 45%,#0b1527 100%);color:#fff}.hnres-search-hero{padding:84px 0 34px}.hnres-search-hero__content{max-width:860px;margin-bottom:24px}.hnres-search-hero__content h1{margin:14px 0 14px;font-size:clamp(34px,5vw,56px);line-height:1.08;color:#fff}.hnres-search-hero__content p{margin:0;color:rgba(255,255,255,.72);line-height:1.8;font-size:17px}.hnres-search-shell{padding:24px;border-radius:28px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.1);box-shadow:0 24px 70px rgba(0,0,0,.28);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px)}.hnres-search-shell__main{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr auto;gap:14px;align-items:end}.hnres-search-input{display:flex;flex-direction:column;gap:8px}.hnres-search-input label,.hnres-filter-field label{font-size:13px;font-weight:700;color:rgba(255,255,255,.78)}.hnres-search-input input,.hnres-search-input select,.hnres-filter-field input,.hnres-filter-field select{width:100%;box-sizing:border-box;padding:14px 16px;border-radius:16px;border:1px solid rgba(255,255,255,.1);background:rgba(7,13,24,.92);color:#fff;min-height:52px}.hnres-search-input input::placeholder,.hnres-filter-field input::placeholder{color:rgba(255,255,255,.35)}.hnres-search-input input:focus,.hnres-search-input select:focus,.hnres-filter-field input:focus,.hnres-filter-field select:focus{outline:none;border-color:rgba(200,153,62,.5);box-shadow:0 0 0 4px rgba(200,153,62,.12)}.hnres-search-actions{display:flex;gap:12px;align-items:center;flex-wrap:wrap}.hnres-search-actions .hnres-btn{min-height:52px;display:inline-flex;align-items:center;justify-content:center}.hnres-quick-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:18px}.hnres-quick-group{padding-top:6px}.hnres-quick-group__label{display:block;margin-bottom:10px;font-size:13px;font-weight:700;color:rgba(255,255,255,.72)}.hnres-chip-list{display:flex;gap:10px;flex-wrap:wrap}.hnres-filter-chip{border:none;border-radius:999px;padding:11px 16px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);color:#fff;font-size:13px;font-weight:700;cursor:pointer;transition:all .2s ease}.hnres-filter-chip:hover,.hnres-filter-chip.is-active{transform:translateY(-1px);background:rgba(200,153,62,.16);border-color:rgba(200,153,62,.35);color:#f8e5bb}.hnres-advanced-panel{margin-top:18px;padding:16px 18px;border-radius:22px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08)}.hnres-advanced-panel summary{cursor:pointer;list-style:none;font-weight:800;color:#fff}.hnres-advanced-panel summary::-webkit-details-marker{display:none}.hnres-filter-grid--compact{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;margin-top:16px}.hnres-active-filters{display:none;flex-wrap:wrap;gap:10px;margin-top:18px}.hnres-active-filters.has-items{display:flex}.hnres-active-filter{border:none;border-radius:999px;padding:10px 14px;background:rgba(200,153,62,.14);border:1px solid rgba(200,153,62,.28);color:#f8e5bb;font-size:13px;font-weight:700;cursor:pointer}.hnres-active-filter span{opacity:.8}.hnres-active-filter--clear{background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.08);color:#fff}.hnres-results-head--modern{display:flex;justify-content:space-between;gap:20px;align-items:flex-end;flex-wrap:wrap;margin-bottom:18px}.hnres-results-tip{max-width:360px;padding:12px 14px;border-radius:16px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08);font-size:13px;color:rgba(255,255,255,.72)}.hnres-archive-grid{align-items:stretch}

.hnres-single--modern{background:linear-gradient(180deg,#08111f 0%,#101d36 40%,#f5f7fb 40%,#f5f7fb 100%);color:#fff}.hnres-single-hero{padding:70px 0 42px}.hnres-single-hero__grid{display:grid;grid-template-columns:minmax(0,1.4fr) 360px;gap:26px;align-items:start}.hnres-single-kickers{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:14px}.hnres-pill-secondary{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.16);color:#fff}.hnres-single-hero h1{margin:0 0 12px;font-size:clamp(32px,4.8vw,54px);line-height:1.08;color:#fff}.hnres-single-location{margin:0 0 22px;color:rgba(255,255,255,.74);font-size:16px}.hnres-single-highlights{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}.hnres-single-highlights div,.hnres-summary-card{padding:18px;border-radius:22px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.1);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px)}.hnres-single-highlights strong{display:block;font-size:20px;color:#fff;margin-bottom:6px}.hnres-single-highlights span,.hnres-summary-card p{color:rgba(255,255,255,.72);line-height:1.7}.hnres-summary-card__label{display:inline-block;margin-bottom:10px;font-size:12px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;color:#f7dfac}.hnres-single-layout{display:grid;grid-template-columns:minmax(0,1.45fr) 360px;gap:28px;align-items:start}.hnres-main,.hnres-sidebar{min-width:0}.hnres-card{background:#fff;border:1px solid rgba(10,24,48,.08);box-shadow:0 18px 45px rgba(12,26,57,.08);border-radius:28px;padding:22px;color:#13233e}.hnres-card + .hnres-card,.hnres-main > section + section{margin-top:20px}.hnres-card--nested{height:100%;box-shadow:none;padding:0;border:none;background:transparent}.hnres-card-head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:18px}.hnres-card-head h2{margin:0;font-size:24px;line-height:1.3;color:#13233e}.hnres-card-head--split{align-items:flex-start}.hnres-gallery-card .hnres-gallery-main{border-radius:24px;overflow:hidden;background:#eef2f7}.hnres-gallery-card .hnres-gallery-main img{display:block;width:100%;height:min(62vw,620px);object-fit:cover}.hnres-gallery-thumbs{display:grid;grid-template-columns:repeat(auto-fill,minmax(92px,1fr));gap:12px;margin-top:14px}.hnres-thumb{border:none;padding:0;border-radius:16px;overflow:hidden;cursor:pointer;background:#e9eef6;opacity:.82;transition:all .2s ease}.hnres-thumb.active,.hnres-thumb:hover{opacity:1;transform:translateY(-2px);box-shadow:0 0 0 2px rgba(200,153,62,.5)}.hnres-thumb img{width:100%;height:88px;object-fit:cover;display:block}.hnres-spec-grid--modern{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.hnres-spec-grid--modern div{padding:16px;border-radius:18px;background:#f6f8fc;border:1px solid #e6ecf4}.hnres-spec-grid--modern span{display:block;margin-bottom:6px;font-size:13px;color:#64748b}.hnres-spec-grid--modern strong{color:#13233e;font-size:16px}.hnres-content{color:#324256;line-height:1.85;font-size:16px}.hnres-content-collapsed{max-height:220px;overflow:hidden;position:relative}.hnres-content-collapsed::after{content:'';position:absolute;left:0;right:0;bottom:0;height:70px;background:linear-gradient(180deg,rgba(255,255,255,0),#fff)}.hnres-toggle-more{border:none;border-radius:999px;padding:11px 16px;background:#13233e;color:#fff;font-weight:700;cursor:pointer}.hnres-tags{display:flex;flex-wrap:wrap;gap:10px}.hnres-tags span{padding:10px 14px;border-radius:999px;background:#f5f1e8;color:#7f5d18;font-weight:700;font-size:13px}.hnres-media-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.hnres-map-wrap iframe{width:100%;min-height:300px;border:0;border-radius:20px}.hnres-map-link{display:inline-flex;align-items:center;justify-content:center;padding:12px 16px;border-radius:14px;background:#13233e;color:#fff;text-decoration:none;font-weight:700}.hnres-video-copy{margin:0 0 18px;color:#475569;line-height:1.8}.hnres-contact-card--sticky{position:sticky;top:24px;padding:24px;border-radius:28px;background:#13233e;color:#fff;box-shadow:0 22px 50px rgba(10,24,48,.2)}.hnres-contact-card--sticky h3{margin:14px 0 12px;color:#fff;font-size:28px}.hnres-contact-card--sticky p{margin:0 0 18px;color:rgba(255,255,255,.74);line-height:1.75}.hnres-contact-list{display:grid;gap:12px;margin-bottom:18px}.hnres-contact-list div{display:flex;justify-content:space-between;gap:14px;padding:14px 16px;border-radius:18px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08)}.hnres-contact-list span{color:rgba(255,255,255,.68)}.hnres-contact-list strong{color:#fff;text-align:right}.hnres-contact-actions{display:flex;gap:12px;flex-wrap:wrap}.hnres-contact-checklist{display:grid;gap:10px;margin:18px 0 0;padding-left:18px;color:rgba(255,255,255,.72)}.hnres-related--modern{padding:18px 0 82px;background:#f5f7fb}.hnres-related-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.hnres-archive-status{margin-top:14px;font-size:13px;color:rgba(255,255,255,.76)}

@media (max-width: 1100px){.hnres-search-shell__main{grid-template-columns:repeat(2,minmax(0,1fr))}.hnres-search-actions{grid-column:1 / -1}.hnres-filter-grid--compact,.hnres-spec-grid--modern,.hnres-related-grid,.hnres-media-grid,.hnres-single-layout,.hnres-single-hero__grid{grid-template-columns:1fr}.hnres-single-highlights{grid-template-columns:1fr 1fr 1fr}.hnres-quick-row{grid-template-columns:1fr}}
@media (max-width: 768px){.hnre-property-card--modern .hnre-property-stats{grid-template-columns:1fr}.hnres-search-hero{padding:64px 0 26px}.hnres-search-shell{padding:18px;border-radius:22px}.hnres-search-shell__main{grid-template-columns:1fr}.hnres-search-actions .hnres-btn{width:100%}.hnres-single-highlights{grid-template-columns:1fr}.hnres-card{padding:18px;border-radius:22px}.hnres-gallery-card .hnres-gallery-main img{height:360px}.hnres-related--modern{padding-bottom:54px}}
