:root {
  --hd-ink: #101318;
  --hd-muted: #667085;
  --hd-line: #e6eaf0;
  --hd-soft: #f5f7fa;
  --hd-blue: #1268d6;
  --hd-blue-dark: #0b4fa8;
  --hd-white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  color: var(--hd-ink);
  background: var(--hd-white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

img,
input,
select,
textarea,
button {
  max-width: 100%;
}

.hd-container {
  width: 100%;
  margin: 0 auto;
  padding-left: 5vw;
  padding-right: 5vw;
}

.hd-nav {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--hd-line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.hd-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--hd-ink);
}

.hd-brand-mark {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
}

.hd-nav .nav-link {
  color: var(--hd-ink);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 13px;
}

.hd-btn,
.hd-search-button,
.hd-action-grid button,
.hd-agent-card button,
.hd-soft-button {
  border: 0;
  border-radius: 4px;
  background: var(--hd-blue);
  color: var(--hd-white);
  font-weight: 800;
  padding: 13px 22px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
}

.hd-btn:hover,
.hd-search-button:hover {
  color: var(--hd-white);
  background: var(--hd-blue-dark);
}

.hd-btn-sm {
  min-height: 38px;
  padding: 8px 16px;
}

.hd-btn-light {
  background: var(--hd-white);
  color: var(--hd-ink);
}

.hd-btn-light:hover {
  background: #edf4ff;
  color: var(--hd-ink);
}

.hd-btn-wide {
  width: 100%;
}

.hd-kicker {
  color: var(--hd-blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hd-hero {
  min-height: 720px;
  position: relative;
  display: grid;
  align-items: center;
  color: var(--hd-white);
  overflow: hidden;
}

.hd-hero-media,
.hd-detail-main-image,
.hd-card-image,
.hd-location {
  background-position: center;
  background-size: cover;
}

.hd-hero-media {
  position: absolute;
  inset: 0;
  background-image: url("/images/placeholders/hero-listing-platform.jpg");
}

.hd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 24, 43, 0.88), rgba(11, 24, 43, 0.48), rgba(11, 24, 43, 0.12));
}

.hd-hero-content {
  position: relative;
  padding-top: 72px;
  padding-bottom: 62px;
}

.hd-hero h1 {
  max-width: 780px;
  margin: 12px 0 18px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.02;
  font-weight: 900;
}

.hd-hero p {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

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

.hd-hero-photo-prompt {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.hd-hero-photo-prompt button {
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--hd-white);
  padding: 6px 10px;
  font-weight: 900;
}

.hd-hero-photo-prompt button:hover {
  background: var(--hd-white);
  color: var(--hd-ink);
}

.hd-search-panel {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 0.7fr 0.7fr auto;
  gap: 12px;
  padding: 18px;
  background: var(--hd-white);
  color: var(--hd-ink);
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(8, 24, 48, 0.22);
  max-width: 1180px;
}

.hd-search-section {
  padding-top: 54px;
  padding-bottom: 54px;
  background: var(--hd-soft);
}

.hd-search-intro {
  margin-bottom: 18px;
}

.hd-search-intro h2 {
  margin: 8px 0 0;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
  font-weight: 900;
}

.hd-search-results {
  margin-top: 22px;
}

label {
  display: block;
  margin-bottom: 7px;
  color: var(--hd-muted);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--hd-line);
  border-radius: 4px;
  background: var(--hd-white);
  color: var(--hd-ink);
  padding: 12px 13px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.hd-section,
.hd-band,
.hd-cta {
  padding: 82px 0;
}

.hd-band {
  background: var(--hd-soft);
}

.hd-section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.hd-section-head h2,
.hd-split h2,
.hd-cta h2,
.hd-page-hero h1 {
  margin: 10px 0 12px;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.08;
}

.hd-section-head p,
.hd-split p,
.hd-cta p,
.hd-page-hero p {
  color: var(--hd-muted);
  font-size: 18px;
}

.hd-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.hd-card-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hd-listing-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hd-property-card,
.hd-info-card,
.hd-agent-card,
.hd-filter-panel,
.hd-agent-panel,
.hd-form-shell,
.hd-signin-box {
  border: 1px solid var(--hd-line);
  border-radius: 6px;
  background: var(--hd-white);
}

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

.hd-card-image {
  height: 250px;
}

.hd-home-1 { background-image: url("/images/placeholders/property-oak-ridge.jpg"); }
.hd-home-2 { background-image: url("/images/placeholders/property-lakeview.jpg"); }
.hd-home-3 { background-image: url("/images/placeholders/property-west-park.jpg"); }
.hd-home-4 { background-image: url("/images/placeholders/property-market-street.jpg"); }
.hd-photo-job { background-image: url("/images/placeholders/photo-job-interior.jpg"); }
.hd-about-image { background-image: url("/images/placeholders/about-agent-workflow.jpg"); }
.hd-aixe-image { background-image: url("/images/placeholders/aixe-real-estate-ops.jpg"); }

.hd-card-body,
.hd-info-card,
.hd-agent-card,
.hd-filter-panel,
.hd-agent-panel,
.hd-form-shell,
.hd-signin-box {
  padding: 24px;
}

.hd-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 10px;
  border-radius: 4px;
  background: #eaf2ff;
  color: var(--hd-blue);
  font-size: 12px;
  font-weight: 900;
}

.hd-card-body h3,
.hd-info-card h2,
.hd-agent-card h2,
.hd-filter-panel h2,
.hd-agent-panel h2,
.hd-form-shell h2,
.hd-signin-box h2 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 8px;
}

.hd-card-body p,
.hd-info-card p,
.hd-agent-card p {
  color: var(--hd-muted);
}

.hd-listing-address {
  min-height: 48px;
  margin-bottom: 14px;
}

.hd-listing-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.hd-listing-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 6px 8px;
  border: 1px solid var(--hd-line);
  border-radius: 4px;
  color: var(--hd-ink);
  font-size: 13px;
  font-weight: 800;
  background: #f8fafc;
}

.hd-listing-stat svg {
  width: 16px;
  height: 16px;
  fill: var(--hd-blue);
  flex: 0 0 auto;
}

.hd-empty-state {
  border: 1px solid var(--hd-line);
  border-radius: 6px;
  padding: 28px;
  background: var(--hd-white);
}

.hd-empty-state h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 900;
}

.hd-empty-state p {
  margin: 0;
  color: var(--hd-muted);
}

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

.hd-card-bottom strong {
  font-size: 22px;
}

.hd-card-bottom a {
  color: var(--hd-blue);
  font-weight: 900;
}

.hd-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  min-height: 440px;
}

.hd-mosaic div {
  min-height: 210px;
  border-radius: 6px;
  background-position: center;
  background-size: cover;
}

.hd-mosaic div:first-child {
  grid-row: span 2;
}

.hd-blog-card {
  border: 1px solid var(--hd-line);
  border-radius: 6px;
  padding: 26px;
  background: var(--hd-white);
}

.hd-blog-card span {
  color: var(--hd-blue);
  display: block;
  font-weight: 900;
  margin-bottom: 18px;
}

.hd-blog-card h2,
.hd-blog-card h3 {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.18;
}

.hd-blog-card p {
  color: var(--hd-muted);
}

.hd-partner-strip {
  border-top: 1px solid var(--hd-line);
  border-bottom: 1px solid var(--hd-line);
  padding: 28px 0;
  background: var(--hd-soft);
}

.hd-partner-strip .hd-container {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--hd-muted);
  font-weight: 900;
}

.hd-split,
.hd-detail-layout,
.hd-contact-layout,
.hd-listing-layout,
.hd-article-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.hd-feature-list {
  display: grid;
  gap: 14px;
}

.hd-feature-list div {
  border-left: 4px solid var(--hd-blue);
  background: var(--hd-white);
  padding: 18px 20px;
}

.hd-feature-list strong,
.hd-feature-list span {
  display: block;
}

.hd-feature-list span {
  color: var(--hd-muted);
  margin-top: 4px;
}

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

.hd-location {
  min-height: 230px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  border-radius: 6px;
  overflow: hidden;
  color: var(--hd-white);
  font-size: 22px;
  font-weight: 900;
  box-shadow: inset 0 -120px 90px rgba(0, 0, 0, 0.56);
}

.hd-area-1 { background-image: url("/images/placeholders/area-urban-core.jpg"); }
.hd-area-2 { background-image: url("/images/placeholders/area-suburban-homes.jpg"); }
.hd-area-3 { background-image: url("/images/placeholders/area-luxury-estates.jpg"); }
.hd-area-4 { background-image: url("/images/placeholders/area-investment-properties.jpg"); }

.hd-cta {
  background: var(--hd-ink);
  color: var(--hd-white);
  text-align: center;
}

.hd-cta p {
  max-width: 720px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.75);
}

.hd-page-hero {
  background: #101824;
  color: var(--hd-white);
  padding: 92px 0;
}

.hd-page-hero-small {
  padding: 68px 0;
}

.hd-page-hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.72);
}

.hd-aixe-hero {
  background: linear-gradient(135deg, #0d1523, #0d4f99);
}

.hd-listing-layout {
  grid-template-columns: 320px 1fr;
}

.hd-filter-panel {
  position: sticky;
  top: 92px;
}

.hd-filter-panel input,
.hd-filter-panel select,
.hd-form-shell input,
.hd-form-shell select,
.hd-form-shell textarea,
.hd-agent-panel input,
.hd-agent-panel textarea,
.hd-signin-box input {
  margin-bottom: 15px;
}

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

.hd-soft-button {
  background: var(--hd-soft);
  color: var(--hd-ink);
  border: 1px solid var(--hd-line);
}

.hd-detail-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  color: var(--hd-white);
}

.hd-detail-main-image {
  position: absolute;
  inset: 0;
}

.hd-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 13, 22, 0.82), rgba(7, 13, 22, 0.18));
}

.hd-detail-summary {
  position: relative;
  z-index: 1;
  padding-bottom: 52px;
}

.hd-detail-summary h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
}

.hd-detail-summary strong {
  font-size: 34px;
}

.hd-stat-row,
.hd-action-grid,
.hd-agent-grid,
.hd-timeline {
  display: grid;
  gap: 18px;
}

.hd-stat-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 28px 0 38px;
}

.hd-detail-stats {
  margin-top: 0;
}

.hd-detail-stats div {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  text-align: center;
  row-gap: 6px;
}

.hd-detail-stats svg {
  width: 28px;
  height: 28px;
  fill: var(--hd-blue);
}

.hd-stat-row div,
.hd-timeline div {
  background: var(--hd-soft);
  border-radius: 6px;
  padding: 20px;
}

.hd-stat-row strong,
.hd-stat-row span {
  display: block;
}

.hd-stat-row strong {
  font-size: 28px;
}

.hd-stat-row span {
  color: var(--hd-muted);
  font-weight: 800;
}

.hd-detail-copy {
  margin-bottom: 44px;
}

.hd-detail-copy h2 {
  margin-bottom: 14px;
  font-size: 30px;
  font-weight: 900;
}

.hd-detail-copy p {
  color: var(--hd-muted);
  font-size: 18px;
}

.hd-feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hd-feature-list li {
  position: relative;
  min-height: 58px;
  padding: 16px 16px 16px 42px;
  border: 1px solid rgba(13, 37, 63, 0.1);
  border-radius: 6px;
  background: var(--hd-soft);
  color: var(--hd-ink);
  font-weight: 850;
  line-height: 1.3;
}

.hd-feature-list li::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 16px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--hd-blue);
  box-shadow: inset 0 0 0 4px var(--hd-white);
}

.hd-feature-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hd-feature-card {
  overflow: hidden;
  border: 1px solid rgba(13, 37, 63, 0.1);
  border-radius: 6px;
  background: var(--hd-white);
  box-shadow: 0 16px 36px rgba(13, 37, 63, 0.08);
}

.hd-feature-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hd-feature-card strong {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 16px;
  color: var(--hd-ink);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.hd-muted-count {
  color: var(--hd-muted);
  font-weight: 800;
}

.hd-detail-facts {
  position: sticky;
  top: 92px;
}

.hd-detail-facts dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.hd-detail-facts dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--hd-line);
  padding-bottom: 10px;
}

.hd-detail-facts dt {
  color: var(--hd-muted);
  font-weight: 800;
}

.hd-detail-facts dd {
  margin: 0;
  text-align: right;
  font-weight: 900;
}

.hd-photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hd-gallery-photo {
  position: relative;
  min-height: 220px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  overflow: hidden;
  background: var(--hd-ink);
  cursor: pointer;
  text-align: left;
}

.hd-gallery-photo img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}

.hd-gallery-photo span {
  position: absolute;
  left: 12px;
  right: 12px;
  z-index: 1;
}

.hd-gallery-photo span {
  bottom: 12px;
  display: inline-flex;
  width: max-content;
  max-width: calc(100% - 24px);
  padding: 5px 8px;
  border-radius: 4px;
  background: rgba(16, 19, 24, 0.86);
  color: var(--hd-white);
  font-size: 12px;
  font-weight: 900;
}

.hd-gallery-photo:hover img {
  transform: scale(1.04);
}

.hd-photo-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 36px;
  background: rgba(7, 13, 22, 0.88);
}

.hd-photo-modal.is-open {
  display: flex;
}

.hd-photo-modal-panel {
  width: min(1120px, 100%);
  max-height: 88vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--hd-white);
}

.hd-photo-modal-panel img {
  width: 100%;
  height: 88vh;
  max-height: 88vh;
  object-fit: contain;
  background: #05070a;
}

.hd-photo-modal-copy {
  padding: 24px;
  overflow: auto;
}

.hd-photo-modal-copy strong {
  display: block;
  margin-bottom: 12px;
  color: var(--hd-blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hd-photo-modal-copy p {
  color: var(--hd-muted);
  font-size: 17px;
}

.hd-photo-modal-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 101;
  border: 0;
  border-radius: 4px;
  background: var(--hd-white);
  color: var(--hd-ink);
  padding: 10px 14px;
  font-weight: 900;
}

.hd-action-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hd-action-grid button,
.hd-agent-card button {
  width: 100%;
}

.hd-avatar {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  margin-bottom: 16px;
  background: url("/images/placeholders/agent-jordan.jpg") center / cover;
}

.hd-avatar-two {
  background-image: url("/images/placeholders/agent-morgan.jpg");
}

.hd-avatar-three {
  background-image: url("/images/placeholders/agent-taylor.jpg");
}

.hd-media-card {
  min-height: 430px;
  border-radius: 6px;
  background-position: center;
  background-size: cover;
}

.hd-blog-image {
  height: 210px;
  margin: -26px -26px 22px;
  border-radius: 6px 6px 0 0;
  background-position: center;
  background-size: cover;
}

.hd-blog-image-one { background-image: url("/images/placeholders/blog-listing-ai.jpg"); }
.hd-blog-image-two { background-image: url("/images/placeholders/blog-photo-jobs.jpg"); }
.hd-blog-image-three { background-image: url("/images/placeholders/blog-aixe-contracts.jpg"); }

.hd-agent-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hd-checkbox-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}

.hd-checkbox-list label {
  color: var(--hd-ink);
  font-weight: 700;
}

.hd-checkbox-list input {
  width: auto;
  margin-right: 8px;
}

.hd-timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hd-timeline span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--hd-white);
  background: var(--hd-blue);
  border-radius: 50%;
  font-weight: 900;
  margin-bottom: 16px;
}

.hd-contact-layout {
  grid-template-columns: minmax(0, 520px) 1fr;
}

.hd-map-panel {
  min-height: 455px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: var(--hd-muted);
  font-weight: 900;
  background:
    linear-gradient(90deg, rgba(18, 104, 214, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(18, 104, 214, 0.08) 1px, transparent 1px),
    #f8fafc;
  background-size: 36px 36px;
}

.hd-article {
  max-width: 760px;
}

.hd-article h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
}

.hd-article p,
.hd-article blockquote {
  color: var(--hd-muted);
  font-size: 19px;
}

.hd-article blockquote {
  border-left: 5px solid var(--hd-blue);
  margin: 30px 0;
  padding: 18px 24px;
  background: var(--hd-soft);
  color: var(--hd-ink);
  font-weight: 800;
}

.hd-countdown {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hd-countdown div {
  min-width: 132px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
}

.hd-countdown strong,
.hd-countdown span {
  display: block;
}

.hd-countdown strong {
  font-size: 40px;
  line-height: 1;
}

.hd-countdown span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  margin-top: 8px;
}

.hd-signin-box {
  max-width: 460px;
  margin: 0 auto;
}

.hd-signin-box a {
  display: inline-block;
  margin-top: 18px;
  color: var(--hd-blue);
  font-weight: 900;
}

.hd-footer {
  background: #090d14;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 80px;
  padding: 0 0 28px;
}

.hd-footer-newsletter {
  transform: translateY(-50%);
  margin-bottom: -36px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 32px;
  padding: 34px 40px;
  border-radius: 6px;
  background: var(--hd-white);
  color: var(--hd-ink);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
}

.hd-footer-newsletter h2 {
  margin: 8px 0;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.08;
}

.hd-footer-newsletter p {
  color: var(--hd-muted);
  margin: 0;
}

.hd-footer-newsletter form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.hd-footer-newsletter input {
  min-height: 54px;
}

.hd-footer-newsletter button,
.hd-footer-button {
  min-height: 54px;
  border: 0;
  border-radius: 4px;
  padding: 0 22px;
  background: var(--hd-blue);
  color: var(--hd-white);
  font-weight: 900;
}

.hd-footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.75fr 1fr;
  gap: 38px;
  padding-top: 68px;
  padding-bottom: 42px;
}

.hd-footer-main h3 {
  color: var(--hd-white);
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 20px;
}

.hd-footer-main a,
.hd-footer-main p {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 12px;
}

.hd-footer-main a:hover {
  color: var(--hd-white);
}

.hd-footer-brand {
  color: var(--hd-white);
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 8px;
}

.hd-footer p {
  max-width: 520px;
  margin: 0;
}

.hd-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hd-footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.09);
  color: var(--hd-white);
  font-weight: 900;
}

.hd-footer-button {
  width: fit-content;
  display: inline-flex !important;
  align-items: center;
  margin-top: 10px;
}

.hd-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.62);
}

.hd-footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
}

.hd-aixe-footer {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  order: 3;
  margin-left: auto;
  line-height: 1;
}

.hd-aixe-mark {
  display: inline-flex;
  align-items: center;
  opacity: 0.92;
}

.hd-aixe-mark:hover {
  opacity: 1;
}

.hd-aixe-mark img {
  display: block;
  width: 84px;
  height: 28px;
}

.hd-aixe-tagline {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.2;
}

.hd-aixe-tagline:hover {
  color: var(--hd-white);
}

@media (max-width: 992px) {
  .hd-search-panel,
  .hd-card-grid,
  .hd-card-grid-two,
  .hd-listing-card-grid,
  .hd-split,
  .hd-detail-layout,
  .hd-contact-layout,
  .hd-listing-layout,
  .hd-article-layout,
  .hd-location-grid,
  .hd-agent-grid,
  .hd-timeline {
    grid-template-columns: 1fr;
  }

  .hd-filter-panel {
    position: static;
  }

  .hd-detail-facts {
    position: static;
  }

  .hd-photo-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hd-feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hd-feature-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hd-photo-modal-panel {
    grid-template-columns: 1fr;
  }

  .hd-photo-modal-panel img {
    height: 58vh;
  }

  .hd-hero {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .hd-container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hd-hero h1,
  .hd-page-hero h1 {
    font-size: 38px;
  }

  .hd-photo-gallery {
    grid-template-columns: 1fr;
  }

  .hd-feature-list {
    grid-template-columns: 1fr;
  }

  .hd-feature-card-grid {
    grid-template-columns: 1fr;
  }

  .hd-photo-modal {
    padding: 18px;
  }

  .hd-section,
  .hd-band,
  .hd-cta {
    padding: 58px 0;
  }

  .hd-card-image {
    height: 220px;
  }

  .hd-stat-row,
  .hd-action-grid,
  .hd-checkbox-list,
  .hd-mosaic {
    grid-template-columns: 1fr;
  }

  .hd-mosaic div:first-child {
    grid-row: auto;
  }

  .hd-footer-newsletter,
  .hd-footer-main {
    grid-template-columns: 1fr;
  }

  .hd-footer-newsletter {
    transform: translateY(-28%);
    margin-bottom: -18px;
    padding: 26px;
  }

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

  .hd-footer-bottom {
    flex-direction: column;
  }

  .hd-aixe-footer {
    margin-left: 0;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
