:root {
  color-scheme: dark;
  --bg: #05070b;
  --bg-soft: #0b111c;
  --panel: rgba(255, 255, 255, 0.065);
  --panel-strong: rgba(255, 255, 255, 0.11);
  --line: rgba(229, 204, 135, 0.22);
  --text: #f8f4ea;
  --muted: #aab2bf;
  --gold: #d7ad55;
  --gold-light: #f0d48a;
  --navy: #101827;
  --aqua: #4faebe;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% 45%, rgba(215, 173, 85, 0.18), transparent 28rem),
    radial-gradient(circle at 82% 12%, rgba(52, 112, 165, 0.22), transparent 30rem),
    radial-gradient(circle at 12% 8%, rgba(79, 174, 190, 0.1), transparent 24rem),
    linear-gradient(135deg, #05070b 0%, #08101c 44%, #030406 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(3, 7, 13, 0.34);
  backdrop-filter: blur(20px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  width: min(1360px, calc(100% - 80px));
  margin: 0 auto;
  min-height: 76px;
}

.brand,
.nav-links,
.nav-actions,
.phone-link {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.55rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-icon {
  width: 25px;
  height: 25px;
  color: #f1c232;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.brand-name {
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.38rem;
  font-weight: 700;
  line-height: 1;
}

.brand-name span {
  color: #e3b524;
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  gap: 3.1rem;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-actions {
  gap: 1.6rem;
}

.phone-link {
  gap: 0.55rem;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
}

.phone-link svg,
.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.nav-consult {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 0.75rem 1.55rem;
  background: linear-gradient(135deg, #f0c849, #c99623);
  color: #090806;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(215, 173, 85, 0.2);
  white-space: nowrap;
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

#top,
#listings,
#services,
#about,
#contact {
  scroll-margin-top: 100px;
}

.hero {
  position: relative;
  min-height: 720px;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 28%, rgba(215, 173, 85, 0.2), transparent 22rem),
    radial-gradient(circle at 72% 18%, rgba(46, 112, 165, 0.2), transparent 30rem),
    linear-gradient(115deg, #05070b 0%, #07111d 42%, #030508 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.98) 0%, rgba(5, 7, 11, 0.88) 27%, rgba(5, 7, 11, 0.24) 49%, transparent 73%),
    linear-gradient(180deg, rgba(5, 7, 11, 0.08) 0%, transparent 58%, rgba(5, 7, 11, 0.94) 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: 1%;
  top: 6%;
  z-index: 0;
  width: 58%;
  height: 52%;
  background: radial-gradient(circle, rgba(240, 212, 138, 0.28), rgba(52, 112, 165, 0.1) 44%, transparent 72%);
  filter: blur(58px);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: min(43%, 620px);
  margin-left: max(40px, calc((100vw - 1360px) / 2));
  padding-top: 10.6rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: 590px;
  margin-bottom: 1.35rem;
  font-size: 3.95rem;
}

h1 span {
  display: block;
}

h1 strong {
  color: #e3b524;
  font-weight: 700;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 1.9rem;
  color: #d8dde6;
  font-size: 1.04rem;
}

.hero-actions,
.cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border-radius: 4px;
  padding: 0.85rem 1.45rem;
  border: 1px solid transparent;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #f2d88f, #b8862f);
  color: #090806;
  box-shadow: 0 18px 38px rgba(215, 173, 85, 0.25);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.hero-mansion-image {
  position: absolute;
  right: -7%;
  top: 1.2rem;
  z-index: 1;
  width: 78%;
  max-width: none;
  height: auto;
  object-fit: contain;
  transform: translate3d(0, 0, 0);
  filter: drop-shadow(0 38px 80px rgba(0, 0, 0, 0.48));
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, black 9%, black 96%, transparent 100%),
    linear-gradient(180deg, black 0%, black 78%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, black 9%, black 96%, transparent 100%),
    linear-gradient(180deg, black 0%, black 78%, transparent 100%);
  mask-composite: intersect;
}

.property-card {
  position: absolute;
  right: max(40px, calc((100vw - 1360px) / 2 + 24px));
  top: 19rem;
  z-index: 4;
  width: min(390px, 28vw);
  padding: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(9, 10, 12, 0.64), rgba(255, 255, 255, 0.08));
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(18px);
}

.property-badge,
.listing-content p {
  margin-bottom: 0.2rem;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.property-badge {
  display: inline-flex;
  margin-bottom: 0.9rem;
  border-radius: 4px;
  padding: 0.35rem 0.62rem;
  background: linear-gradient(135deg, #f0c849, #c99623);
  color: #110d05;
  font-size: 0.7rem;
}

.property-card h2 {
  margin-bottom: 0.45rem;
  font-size: 2rem;
}

.property-card h3 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.property-location,
.property-meta {
  margin-bottom: 0.8rem;
  color: #d7dce5;
  font-size: 0.9rem;
}

.property-meta {
  margin-bottom: 1rem;
  color: #c5ccd7;
}

.property-link {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.065);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-block {
  padding: 80px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 56px;
}

.section-heading h2,
.contact-copy h2,
.cta h2 {
  max-width: 760px;
  margin-bottom:  1.35rem;
  font-size: 3.8rem;
}

.section-heading.compact {
  display: block;
}

.listing-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.listing-card,
.service-card,
.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.listing-card {
  overflow: hidden;
}

.listing-image {
  position: relative;
  aspect-ratio: 1.28;
  background-color: #101827;
  overflow: hidden;
  isolation: isolate;
}

.listing-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.66));
  pointer-events: none;
}

.listing-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.listing-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-price {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  border: 1px solid rgba(240, 212, 138, 0.28);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  background: rgba(0, 0, 0, 0.34);
  color: var(--gold-light);
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.photo-button {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.48rem 0.72rem;
  background: rgba(5, 7, 11, 0.58);
  color: #ffffff;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.photo-button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.photo-button:hover,
.photo-button:focus-visible {
  border-color: rgba(240, 212, 138, 0.5);
  background: rgba(5, 7, 11, 0.76);
  transform: translateY(-1px);
}

.carousel-arrow,
.gallery-arrow,
.gallery-close {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(5, 7, 11, 0.56);
  color: #ffffff;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 38px;
  height: 38px;
  opacity: 0;
  font-size: 1.65rem;
  line-height: 1;
  transform: translateY(-50%);
}

.carousel-prev {
  left: 0.85rem;
}

.carousel-next {
  right: 0.85rem;
}

.listing-image:hover .carousel-arrow,
.listing-image:focus-within .carousel-arrow {
  opacity: 1;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible,
.gallery-arrow:hover,
.gallery-arrow:focus-visible,
.gallery-close:hover,
.gallery-close:focus-visible {
  border-color: rgba(240, 212, 138, 0.52);
  background: rgba(5, 7, 11, 0.82);
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  z-index: 3;
  display: flex;
  gap: 0.4rem;
  transform: translateX(-50%);
}

.carousel-dots button {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.carousel-dots button.is-active {
  width: 18px;
  background: var(--gold-light);
}

.listing-content,
.service-card {
  padding: 1.35rem;
}

.listing-content h3,
.service-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.2rem;
}

.listing-content span,
.service-card p,
.contact-copy p {
  color: var(--muted);
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(2, 4, 8, 0.78);
  backdrop-filter: blur(18px);
}

.gallery-modal.is-open {
  display: flex;
}

.gallery-dialog {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 1rem;
  width: min(1040px, 100%);
  max-height: min(860px, calc(100vh - 56px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(14, 19, 29, 0.98), rgba(5, 7, 11, 0.98));
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.gallery-header {
  padding-right: 3.5rem;
}

.gallery-header h2 {
  margin: 0;
  font-size: 1.45rem;
}

.gallery-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  font-size: 1.55rem;
  line-height: 1;
}

.gallery-stage {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #05070b;
}

.gallery-stage img {
  display: block;
  width: 100%;
  height: min(62vh, 620px);
  min-height: 360px;
  object-fit: cover;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.gallery-prev {
  left: 1rem;
}

.gallery-next {
  right: 1rem;
}

.gallery-thumbs {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.15rem;
  scrollbar-width: thin;
}

.gallery-thumbs button {
  flex: 0 0 106px;
  aspect-ratio: 1.35;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  padding: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.58;
  transition: opacity 180ms ease, border-color 180ms ease;
}

.gallery-thumbs button.is-active {
  border-color: var(--gold-light);
  opacity: 1;
}

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

.service-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
}

.service-number {
  display: inline-flex;
  margin-bottom: 1.75rem;
  color: var(--gold-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.35rem;
}

.stats-band {
  margin: 0;
  padding: 80px 0;
  border-block: 1px solid rgba(240, 212, 138, 0.18);
  background: linear-gradient(90deg, rgba(215, 173, 85, 0.09), rgba(255, 255, 255, 0.035), rgba(79, 174, 190, 0.08));
}

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

.stats-grid div {
  padding: 2.25rem 1.5rem;
  text-align: center;
}

.stats-grid strong {
  display: block;
  color: var(--gold-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4.7rem;
  line-height: 1;
}

.stats-grid span {
  color: #d5dbe3;
  font-weight: 700;
}

.cta {
  justify-content: space-between;
  margin: 80px auto 0;
  padding: 3.3rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(215, 173, 85, 0.14), rgba(255, 255, 255, 0.04)),
    var(--bg-soft);
}

.cta h2 {
  max-width: 760px;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
  align-items: start;
  padding: 80px 0;
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.07);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form span {
  color: #d8deea;
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
  color: var(--text);
  font: inherit;
  padding: 0.9rem 1rem;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(240, 212, 138, 0.7);
  box-shadow: 0 0 0 3px rgba(215, 173, 85, 0.13);
}

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

@media (max-width: 1180px) {
  .header-inner {
    width: min(100% - 40px, 1360px);
  }

  .nav-links {
    gap: 1.7rem;
  }

  .phone-link {
    display: none;
  }

  .hero-copy {
    margin-left: 28px;
  }

  .property-card {
    right: 28px;
  }
}

@media (max-width: 980px) {
  #top,
  #listings,
  #services,
  #about,
  #contact {
    scroll-margin-top: 96px;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 680px;
  }

  .hero-copy {
    width: min(54%, 540px);
    padding-top: 9.5rem;
  }

  .hero-mansion-image {
    right: -20%;
    top: 3.2rem;
    bottom: auto;
    width: 92%;
  }

  .property-card {
    top: 21rem;
    width: min(340px, 34vw);
  }

  h1 {
    font-size: 3.35rem;
  }

  .section-heading h2,
  .contact-copy h2,
  .cta h2 {
    font-size: 3rem;
  }

  .stats-grid div {
    padding: 2rem 1.5rem;
  }

  .stats-grid strong {
    font-size: 3.8rem;
  }

  .cta {
    margin: 80px auto 0;
    padding: 2.6rem;
  }

  .contact-section {
    gap: 48px;
  }

  .listing-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .listing-image {
    aspect-ratio: 1.55;
  }

  .carousel-arrow {
    opacity: 1;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: fixed;
  }

  #top,
  #listings,
  #services,
  #about,
  #contact {
    scroll-margin-top: 132px;
  }

  .header-inner {
    width: min(100% - 28px, 1360px);
    min-height: 74px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.8rem 0;
  }

  .nav-links {
    position: static;
    order: 3;
    transform: none;
    width: 100%;
    justify-content: space-between;
    gap: 0.6rem;
    font-size: 0.76rem;
  }

  .nav-actions {
    display: none;
  }

  .section-shell {
    width: min(100% - 28px, 1180px);
  }

  .section-block,
  .stats-band,
  .contact-section {
    padding: 64px 0;
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-copy {
    width: 100%;
    margin-left: 14px;
    padding-top: 10.2rem;
  }

  .hero-mansion-image {
    right: -44%;
    top: 24rem;
    bottom: auto;
    width: 150%;
  }

  h1 {
    max-width: 440px;
    font-size: 3rem;
  }

  .section-heading h2,
  .contact-copy h2,
  .cta h2 {
    font-size: 2.55rem;
  }

  .stats-grid strong {
    font-size: 3.2rem;
  }

  .contact-form {
    padding: 1.3rem;
  }

  .listing-image {
    aspect-ratio: 1.18;
  }

  .photo-button {
    right: 0.85rem;
    bottom: 0.85rem;
    min-height: 36px;
    padding: 0.42rem 0.62rem;
    font-size: 0.72rem;
  }

  .carousel-dots {
    bottom: 0.95rem;
  }

  .carousel-arrow {
    width: 34px;
    height: 34px;
    font-size: 1.45rem;
  }

  .gallery-modal {
    align-items: stretch;
    padding: 12px;
  }

  .gallery-dialog {
    max-height: calc(100vh - 24px);
    padding: 0.9rem;
  }

  .gallery-stage img {
    height: min(58vh, 520px);
    min-height: 280px;
  }

  .gallery-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.75rem;
  }

  .gallery-thumbs button {
    flex-basis: 82px;
  }

  .property-card {
    display: none;
  }

  .section-heading {
    display: block;
  }

  .stats-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .stats-grid div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .cta {
    margin: 64px auto 0;
    align-items: flex-start;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 2.55rem;
  }

  .hero-text {
    font-size: 1.04rem;
  }

  .listing-price {
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.38rem 0.64rem;
  }

  .photo-button {
    max-width: calc(100% - 1.5rem);
  }

  .gallery-header h2 {
    font-size: 1.18rem;
  }

  .gallery-stage img {
    height: 54vh;
    min-height: 240px;
  }

  .gallery-prev {
    left: 0.55rem;
  }

  .gallery-next {
    right: 0.55rem;
  }

  .section-heading h2,
  .contact-copy h2,
  .cta h2 {
    font-size: 2.15rem;
  }

  .cta {
    margin: 56px auto 0;
    padding: 1.5rem;
  }

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

  .button {
    padding-inline: 1rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero-mansion-image {
    right: -58%;
    top: 25.5rem;
    bottom: auto;
    width: 180%;
  }

}
