.site-topbar {
  background: var(--color-navy-900);
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--text-sm);
}

.site-topbar a:hover {
  color: var(--color-white);
}

.site-topbar a {
  transition: color var(--transition-base), opacity var(--transition-base);
}

.site-navbar {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px);
  transition: box-shadow var(--transition-base), background var(--transition-base);
}

.site-navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.site-navbar .navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 800;
  color: var(--color-navy-900);
}

.site-navbar .navbar-brand img {
  width: auto;
  height: 2.75rem;
}

.site-brand-text {
  display: none;
}

.site-navbar .nav-link {
  position: relative;
  padding: 0.65rem 1rem;
  color: var(--color-slate-700);
  font-weight: 700;
}

.site-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 1rem;
  bottom: 0.15rem;
  width: calc(100% - 2rem);
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--gradient-ruby);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
  color: var(--color-ruby-700);
}

.site-navbar .nav-link:hover::after,
.site-navbar .nav-link.active::after {
  transform: scaleX(1);
}

.site-navbar .dropdown-menu {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  padding: 0.75rem;
}

.site-navbar .dropdown-item {
  border-radius: 0.75rem;
  font-weight: 700;
  padding: 0.7rem 0.9rem;
  color: var(--color-slate-700);
}

.site-navbar .dropdown-item:hover,
.site-navbar .dropdown-item:focus {
  color: var(--color-ruby-700);
  background: rgba(225, 29, 72, 0.06);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  background: var(--gradient-brand);
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
}

.hero-panel--full {
  width: min(100vw, 1480px);
  max-width: 1480px;
  height: clamp(34rem, 40vw, 38rem);
  margin-inline: auto;
  aspect-ratio: auto;
  border-radius: 0;
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.24;
}

.hero-panel::before {
  top: -5rem;
  right: -5rem;
  width: 15rem;
  height: 15rem;
  background: var(--color-gold-500);
}

.hero-panel::after {
  left: -4rem;
  bottom: -6rem;
  width: 18rem;
  height: 18rem;
  background: var(--color-ruby-600);
}

.hero-carousel .carousel-indicators {
  bottom: 1.5rem;
  margin-bottom: 0;
}

.hero-carousel .carousel-indicators button {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 0.35rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
}

.hero-carousel .carousel-indicators .active {
  background: var(--color-white);
}

.hero-slide {
  min-height: 100%;
  height: 100%;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100%;
}

.hero-slide__media {
  position: relative;
  min-height: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.64) 45%, rgba(15, 23, 42, 0.28) 100%);
}

.hero-slide__content {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide__content .container {
  max-width: 1220px;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3.75rem;
}

.hero-copy {
  max-width: 31rem;
}

.hero-actions {
  max-width: 28rem;
}

.hero-actions .btn-brand,
.hero-actions .btn-brand-outline {
  width: auto;
}

.hero-copy-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-card-column {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-card-column .hero-highlight-card {
  width: min(100%, 20.5rem);
}

.hero-slide__statbar {
  display: none;
}

.hero-floating-card {
  max-width: 20.5rem;
  margin-left: auto;
}

.hero-highlight-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(14px);
  color: var(--color-slate-800);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.hero-highlight-card h2,
.hero-highlight-card h3,
.hero-highlight-card strong {
  color: var(--color-slate-900) !important;
}

.hero-highlight-card .text-muted,
.hero-highlight-card .small {
  color: var(--color-slate-500) !important;
}

.hero-highlight-card p {
  color: var(--color-slate-600) !important;
  line-height: 1.65;
}

.hero-highlight-card .h3,
.hero-highlight-card h2 {
  font-size: 1.85rem;
  line-height: 1.2;
}

.hero-highlight-card .row {
  --bs-gutter-y: 0.75rem;
}

@media (min-width: 992px) {
  .hero-slide__content .row {
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .hero-heading {
    font-size: clamp(2.8rem, 3.6vw, 4rem);
    line-height: 1.06;
  }

  .hero-copy-column {
    padding-right: 2.5rem;
  }

  .hero-card-column {
    padding-left: 1rem;
  }

  .hero-actions {
    margin-top: 0.5rem;
  }
}

@media (min-width: 1200px) {
  .hero-slide__content .container {
    padding-top: 2.5rem;
    padding-bottom: 3.5rem;
  }

  .hero-copy {
    max-width: 30rem;
  }
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 3.5rem;
  height: 3.5rem;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.hero-carousel .carousel-control-prev {
  left: 1.5rem;
}

.hero-carousel .carousel-control-next {
  right: 1.5rem;
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  width: 1.2rem;
  height: 1.2rem;
}

.showcase-band {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.86) 0%, rgba(22, 33, 62, 0.92) 55%, rgba(185, 28, 28, 0.82) 100%),
    url("https://images.unsplash.com/photo-1460317442991-0ec209397118?w=1800&auto=format&fit=crop") center/cover;
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
}

.showcase-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.16), transparent 26%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 25%);
}

.featured-estates-intro {
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}

.estate-card--centered {
  text-align: center;
}

.estate-card--centered .info-chip-group {
  justify-content: center;
}

.estate-card--centered .d-flex {
  align-items: center;
}

.why-choose-shell {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 52%, #eef2ff 100%);
  border: 1px solid rgba(203, 213, 225, 0.85);
  box-shadow: var(--shadow-md);
}

.why-choose-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(225, 29, 72, 0.08), transparent 24%),
    radial-gradient(circle at bottom right, rgba(212, 175, 55, 0.12), transparent 26%);
  pointer-events: none;
}

.why-choose-panel {
  position: sticky;
  top: 7rem;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.why-card {
  height: 100%;
  padding: 1.5rem;
}

.why-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(225, 29, 72, 0.1);
  color: var(--color-ruby-700);
  font-size: var(--text-sm);
  font-weight: 800;
}

.testimonial-card--simple {
  text-align: left;
}

.testimonial-card__quote {
  font-size: 3rem;
  line-height: 1;
  color: rgba(225, 29, 72, 0.18);
}

.process-step {
  position: relative;
  padding-left: 4.25rem;
}

.process-step__index {
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(225, 29, 72, 0.1);
  color: var(--color-ruby-700);
  font-weight: 800;
}

.floating-image-stack {
  position: relative;
  min-height: 30rem;
}

.floating-image-stack__primary,
.floating-image-stack__secondary {
  position: absolute;
  overflow: hidden;
  border-radius: 1.75rem;
  box-shadow: var(--shadow-lg);
}

.floating-image-stack__primary {
  inset: 0 3rem 3rem 0;
}

.floating-image-stack__secondary {
  right: 0;
  bottom: 0;
  width: 46%;
  height: 52%;
  border: 6px solid rgba(255, 255, 255, 0.96);
}

.floating-image-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.estate-card {
  height: 100%;
  overflow: hidden;
}

.estate-card__media {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 0.35rem);
}

.estate-card__media img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  transition: transform 600ms ease;
}

.estate-card:hover .estate-card__media img {
  transform: scale(1.06);
}

.estate-card__price {
  color: var(--color-navy-900);
  font-size: var(--text-xl);
  font-weight: 800;
}

.info-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.info-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-pill);
  background: var(--color-slate-50);
  color: var(--color-slate-700);
  font-size: var(--text-sm);
  font-weight: 700;
}

.service-card,
.feature-card,
.testimonial-card,
.stat-card,
.contact-card,
.video-card {
  height: 100%;
  padding: 1.75rem;
}

.icon-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1.1rem;
  color: var(--color-ruby-700);
  background: rgba(225, 29, 72, 0.08);
}

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(22, 33, 62, 0.98) 100%);
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(225, 29, 72, 0.2), transparent 32%);
}

.site-footer {
  background: var(--color-navy-900);
  color: rgba(255, 255, 255, 0.74);
}

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

.page-header {
  position: relative;
  overflow: hidden;
  padding: 10rem 0 5rem;
  background: var(--gradient-brand);
  color: var(--color-white);
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.48));
}

.page-header > * {
  position: relative;
  z-index: 1;
}

.page-header--compact {
  padding: 8rem 0 4.5rem;
}

.page-header__eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.page-header .section-title,
.estate-banner h1 {
  max-width: 14ch;
}

.page-hero-card,
.media-card,
.metric-card,
.estate-side-card,
.video-feature-card,
.contact-form-shell,
.map-card {
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: var(--shadow-lg);
}

.page-hero-card,
.contact-form-shell,
.estate-side-card,
.video-feature-card {
  padding: 1.75rem;
}

.media-card {
  overflow: hidden;
}

.media-card img,
.estate-hero-media img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card img {
  min-height: 20rem;
}

.metric-card {
  padding: 1.5rem;
  height: 100%;
}

.metric-card__value {
  color: var(--color-ruby-700);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1;
}

.content-list,
.contact-info-list,
.detail-list {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.content-list li,
.detail-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  color: var(--color-slate-600);
}

.content-list i,
.detail-list i,
.contact-info-list i {
  color: var(--color-ruby-600);
  margin-top: 0.25rem;
}

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

.value-grid__item {
  padding: 1rem 1.1rem;
  border-radius: 1.25rem;
  background: rgba(248, 250, 252, 0.94);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.value-grid__label {
  color: var(--color-slate-400);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.value-grid__value {
  color: var(--color-slate-900);
  font-size: 1.125rem;
  font-weight: 800;
}

.estate-hero-badges,
.info-pill-grid,
.video-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.info-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: var(--color-slate-700);
  font-weight: 700;
}

.estate-price {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--color-ruby-700);
  font-weight: 800;
}

.estate-hero-media {
  overflow: hidden;
  border-radius: 2rem;
  min-height: 26rem;
  box-shadow: var(--shadow-lg);
}

.estate-hero-media img {
  min-height: 26rem;
}

.gallery-card {
  overflow: hidden;
  border-radius: 1.5rem;
  height: 100%;
  min-height: 15rem;
  box-shadow: var(--shadow-lg);
}

.video-embed-card {
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--color-slate-950);
  box-shadow: var(--shadow-lg);
}

.video-embed-card iframe,
.map-card iframe {
  width: 100%;
  border: 0;
}

.video-embed-card iframe {
  aspect-ratio: 16 / 9;
  min-height: 16rem;
}

.map-card iframe {
  min-height: 24rem;
}

.contact-form-shell .form-control,
.contact-form-shell .form-select {
  min-height: 3.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(248, 250, 252, 0.94);
}

.contact-form-shell textarea.form-control {
  min-height: 9rem;
  resize: vertical;
}

.contact-form-shell .form-control:focus,
.contact-form-shell .form-select:focus {
  border-color: rgba(185, 28, 28, 0.32);
  box-shadow: 0 0 0 0.2rem rgba(185, 28, 28, 0.08);
}

.contact-info-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.contact-info-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-info-list__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  flex: 0 0 auto;
  background: rgba(225, 29, 72, 0.1);
  color: var(--color-ruby-700);
}

.inline-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-frame {
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.86)),
    var(--gradient-surface);
  border: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: var(--shadow-lg);
}

.section-frame--dark {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.96));
  color: rgba(255, 255, 255, 0.84);
}

.section-frame--dark .section-copy,
.section-frame--dark .text-muted {
  color: rgba(255, 255, 255, 0.72) !important;
}

.section-frame--dark h1,
.section-frame--dark h2,
.section-frame--dark h3,
.section-frame--dark h4 {
  color: var(--color-white);
}

.estate-banner {
  position: relative;
  overflow: hidden;
  padding: 8.5rem 0 4.5rem;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(22, 33, 62, 0.78)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1800&auto=format&fit=crop") center/cover;
}

.estate-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.14), transparent 26%),
    radial-gradient(circle at bottom left, rgba(225, 29, 72, 0.14), transparent 30%);
}

.estate-banner-content {
  position: relative;
  z-index: 1;
}

.estate-flyer {
  width: 100%;
  border-radius: 1.75rem;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.estate-reference-sidebar {
  position: sticky;
  top: 6.5rem;
}

.price-highlight {
  padding: 2rem;
  border-radius: 1.75rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96));
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
}

.price-highlight .price-label {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.price-highlight .price-value {
  margin-top: 0.8rem;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  font-weight: 800;
  color: var(--color-gold-400);
}

.price-highlight .price-size {
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.74);
}

.estate-action-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 1.75rem;
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
}

.btn-download {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 1.2rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.24);
  color: var(--color-gold-700);
  font-weight: 800;
  transition: transform var(--transition-base), background var(--transition-base), box-shadow var(--transition-base);
}

.btn-download:hover {
  transform: translateY(-2px);
  background: rgba(212, 175, 55, 0.18);
  box-shadow: 0 16px 30px rgba(212, 175, 55, 0.16);
}

.estate-features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.estate-feature-card {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1.1rem 1.15rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: var(--shadow-sm);
}

.estate-feature-card i {
  color: var(--color-ruby-600);
  margin-top: 0.2rem;
}

.landmarks-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.landmarks-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  color: var(--color-slate-600);
}

.landmarks-list li:last-child {
  border-bottom: 0;
}

.landmarks-list i {
  color: var(--color-ruby-600);
  margin-top: 0.28rem;
}

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

.gallery-grid .gallery-card {
  min-height: 13rem;
}

.site-footer .d-flex.gap-3 {
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .site-topbar {
    font-size: 0.78rem;
  }

  .site-topbar .container {
    gap: 0.5rem !important;
  }

  .site-navbar {
    padding: 0.75rem 0;
  }

  .site-navbar .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
  }

  .site-navbar .navbar-nav {
    align-items: stretch !important;
    gap: 0.35rem;
  }

  .site-navbar .nav-link {
    padding-inline: 0.85rem;
  }

  .site-navbar .nav-link::after {
    display: none;
  }

  .site-navbar .dropdown-menu {
    margin-top: 0.35rem;
    border-radius: 0.9rem;
    box-shadow: none;
  }

  .site-navbar .btn-brand {
    width: 100%;
    margin-top: 0.35rem;
  }

  .hero-panel--full {
    aspect-ratio: auto;
    min-height: 38rem;
  }

  .hero-slide,
  .hero-slide__media {
    min-height: 100%;
  }

  .hero-floating-card {
    max-width: none;
    margin: 1.5rem 0 0;
  }

  .hero-card-column {
    justify-content: flex-start;
  }

  .hero-heading {
    font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  }

  .hero-copy {
    max-width: 32rem;
  }

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

  .hero-slide__content .container {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .hero-slide__content .row {
    justify-content: flex-start;
  }

  .hero-slide__statbar {
    display: none;
  }

  .floating-image-stack {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .floating-image-stack__primary,
  .floating-image-stack__secondary {
    position: relative;
    inset: auto;
    width: 100%;
    height: 18rem;
    border-width: 0;
  }

  .why-choose-panel {
    position: static;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .featured-estates-intro,
  .max-narrow {
    max-width: 100%;
  }

  .page-header,
  .page-header--compact,
  .estate-banner {
    padding-top: 7rem;
    padding-bottom: 3.5rem;
  }

  .page-header .section-title,
  .estate-banner h1 {
    max-width: 16ch;
  }

  .video-feature-card,
  .page-hero-card,
  .contact-form-shell,
  .estate-action-card,
  .price-highlight {
    padding: 1.5rem;
  }

  .contact-info-list li {
    gap: 0.85rem;
  }

  .video-meta-list,
  .estate-hero-badges,
  .info-pill-grid {
    gap: 0.65rem;
  }

  .media-card img {
    min-height: 17rem;
  }

  .estate-hero-media,
  .estate-hero-media img {
    min-height: 20rem;
  }

  .estate-features-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .estate-reference-sidebar {
    position: static;
  }

  .site-footer .row > [class*="col-"] {
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 767px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .site-topbar {
    display: none;
  }

  .site-navbar .navbar-brand img {
    height: 2.35rem;
  }

  .site-navbar .navbar-collapse {
    margin-top: 0.85rem;
    padding: 0.9rem;
  }

  .hero-panel--full {
    width: 100%;
    aspect-ratio: auto;
    min-height: 32rem;
    border-radius: 0;
  }

  .hero-slide,
  .hero-slide__media {
    min-height: 32rem;
  }

  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    display: none;
  }

  .hero-slide__content .container {
    padding-top: 6.25rem;
    padding-bottom: 3rem;
  }

  .hero-heading {
    font-size: clamp(1.55rem, 6.6vw, 2rem);
    line-height: 1.12;
    margin-bottom: 1rem !important;
  }

  .hero-copy {
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem !important;
  }

  .hero-highlight-card {
    padding: 1.15rem !important;
  }

  .hero-actions {
    max-width: none;
    width: 100%;
    gap: 0.85rem !important;
    margin-bottom: 0;
  }

  .hero-copy-column,
  .hero-card-column {
    width: 100%;
  }

  .hero-copy-column {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .hero-card-column {
    display: none;
  }

  .hero-floating-card {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .hero-actions .btn-brand,
  .hero-actions .btn-brand-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
    min-height: 3.5rem;
  }

  .hero-highlight-card h2 {
    font-size: 1.15rem;
  }

  .hero-highlight-card p {
    margin-bottom: 1rem !important;
  }

  .hero-highlight-card .col-6 {
    width: 100%;
  }

  .hero-carousel .carousel-indicators {
    bottom: 0.85rem;
  }

  .eyebrow {
    margin-bottom: 0.85rem !important;
  }

  .section-title {
    line-height: 1.12;
  }

  .page-header .section-title,
  .estate-banner h1 {
    max-width: none;
  }

  .estate-banner h1 {
    font-size: 2rem !important;
    line-height: 1.1;
  }

  .section-copy {
    font-size: 0.96rem;
  }

  .process-step {
    padding-left: 0;
    padding-top: 4rem;
  }

  .page-hero-card,
  .contact-form-shell,
  .estate-side-card,
  .video-feature-card {
    padding: 1.25rem;
  }

  .inline-cta-row {
    flex-direction: column;
  }

  .inline-cta-row .btn-brand,
  .inline-cta-row .btn-brand-outline,
  .estate-action-card .btn-brand,
  .estate-action-card .btn-brand-outline {
    width: 100%;
  }

  .contact-info-list__icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .price-highlight .price-value {
    font-size: 2.2rem;
  }

  .video-embed-card iframe,
  .map-card iframe {
    min-height: 14rem;
  }

  .media-card img {
    min-height: 14rem;
  }

  .estate-flyer,
  .gallery-card,
  .video-embed-card,
  .map-card,
  .page-hero-card,
  .contact-form-shell,
  .video-feature-card,
  .price-highlight,
  .estate-action-card {
    border-radius: 1.25rem;
  }

  .gallery-grid {
    gap: 0.85rem;
  }

  .gallery-grid .gallery-card {
    min-height: 12rem;
  }

  .site-footer {
    text-align: left;
  }
}
