:root {
  --gm5-bg: #06080c;
  --gm5-bg-2: #10141d;
  --gm5-bg-3: #151a25;
  --gm5-text: rgba(255, 255, 255, 0.72);
  --gm5-muted: rgba(255, 255, 255, 0.42);
  --gm5-white: #ffffff;
  --gm5-gold: #c8a96e;
  --gm5-gold-soft: rgba(200, 169, 110, 0.18);
  --gm5-border: rgba(200, 169, 110, 0.28);
  --gm5-border-soft: rgba(255, 255, 255, 0.08);
  --gm5-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.gm5-section,
.gm5-section-dark {
  background: var(--gm5-bg);
  color: var(--gm5-text);
  padding: 108px 40px;
}

.gm5-section-dark {
  background: #0b0f17;
}

.gm5-container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.gm5-gold {
  color: var(--gm5-gold);
}

.gm5-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  color: var(--gm5-gold);
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1.35;
  text-transform: uppercase;
}

.gm5-eyebrow::before {
  content: "";
  display: inline-block;
  width: 48px;
  height: 1px;
  background: var(--gm5-gold);
  opacity: 0.8;
}

.gm5-eyebrow-link {
  color: var(--gm5-gold);
  text-decoration: none;
}

.gm5-title,
.gm5-content-card h1,
.gm5-content-card h2,
.gm5-content-card h3,
.gm5-card h3,
.gm5-vip-box h3,
.gm5-idx-box h3 {
  margin: 0;
  color: var(--gm5-white);
  font-family: "Playfair Display", serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.gm5-title {
  max-width: 900px;
  font-size: clamp(48px, 7vw, 104px);
}

.gm5-text,
.gm5-text p,
.gm5-card p,
.gm5-vip-box p,
.gm5-idx-box p {
  color: var(--gm5-text);
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.85;
}

.gm5-text p:first-child,
.gm5-card p:first-child {
  margin-top: 0;
}

.gm5-text p:last-child,
.gm5-card p:last-child {
  margin-bottom: 0;
}

.gm5-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 28px;
  border: 1px solid var(--gm5-gold);
  border-radius: 2px;
  background: linear-gradient(135deg, #c8a96e, #e2cc9e);
  color: #06080c;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.gm5-button:hover,
.gm5-button:focus {
  color: #06080c;
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(200, 169, 110, 0.35);
}

.gm5-button-outline {
  background: transparent;
  color: var(--gm5-white);
  border-color: rgba(200, 169, 110, 0.4);
}

.gm5-button-outline:hover,
.gm5-button-outline:focus {
  background: var(--gm5-gold-soft);
  color: var(--gm5-gold);
}

.gm5-grid {
  display: grid;
  gap: 24px;
}

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

.gm5-mini-grid,
.gm5-amenities-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gm5-stats-grid,
.gm5-facts-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gm5-card,
.gm5-stat-card,
.gm5-fact-card,
.gm5-amenity-card,
.gm5-content-card,
.gm5-idx-box,
.gm5-vip-box,
.gm5-floor-plan {
  background: var(--gm5-bg-3);
  border: 1px solid var(--gm5-border);
  border-radius: 3px;
  box-shadow: var(--gm5-shadow);
}

.gm5-card {
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.gm5-card:hover {
  transform: translateY(-3px);
  border-color: var(--gm5-gold);
  background: #171d2a;
}

.gm5-card-media {
  display: block;
  min-height: 270px;
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid var(--gm5-border-soft);
}

.gm5-card-media-placeholder {
  background:
    radial-gradient(circle at 78% 18%, rgba(200, 169, 110, 0.18), transparent 28%),
    linear-gradient(135deg, #10141d, #06080c);
}

.gm5-card-body {
  padding: 30px;
}

.gm5-card h3 {
  margin-bottom: 12px;
  font-size: 28px;
}

.gm5-card h3 a {
  color: inherit;
  text-decoration: none;
}

.gm5-card-meta {
  margin: 18px 0 24px;
  color: var(--gm5-muted);
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gm5-stat-card,
.gm5-fact-card,
.gm5-amenity-card {
  padding: 28px;
}

.gm5-stat-card strong {
  display: block;
  color: var(--gm5-gold);
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  line-height: 1;
}

.gm5-stat-card span,
.gm5-fact-card span {
  display: block;
  margin-top: 10px;
  color: var(--gm5-muted);
  font-family: "Jost", sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  line-height: 1.45;
  text-transform: uppercase;
}

.gm5-fact-card strong {
  display: block;
  margin-top: 8px;
  color: var(--gm5-white);
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.gm5-amenity-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 88px;
  color: var(--gm5-white);
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-weight: 300;
}

.gm5-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid var(--gm5-border);
  border-radius: 999px;
  background: var(--gm5-bg-2);
  color: var(--gm5-gold);
  font-family: "Playfair Display", serif;
}

.gm5-icon {
  display: inline-block;
  color: var(--gm5-gold);
  font-size: 18px;
  line-height: 1;
}

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

.gm5-gallery-item {
  display: block;
  min-height: 260px;
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(200, 169, 110, 0.2);
  transition: filter 0.25s ease, transform 0.25s ease;
}

.gm5-gallery-item:hover {
  filter: brightness(1.12);
  transform: scale(0.99);
}

.gm5-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--gm5-bg);
  background-position: center;
  background-size: cover;
  color: var(--gm5-white);
  padding: 150px 40px 90px;
}

.gm5-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 8, 12, 0.94) 0%, rgba(6, 8, 12, 0.72) 44%, rgba(6, 8, 12, 0.25) 100%),
    linear-gradient(0deg, rgba(6, 8, 12, 0.92) 0%, rgba(6, 8, 12, 0.18) 58%);
}

.gm5-hero-content {
  position: relative;
  z-index: 1;
}

.gm5-hero-tagline {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--gm5-white);
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.22;
}

.gm5-hero-intro {
  max-width: 720px;
  margin-top: 24px;
}

.gm5-address {
  margin: 18px 0 0;
  color: var(--gm5-muted);
  font-family: "Jost", sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gm5-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 40px;
  align-items: start;
}

.gm5-split > .gm5-card,
.gm5-content-card {
  padding: 40px;
}

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

.gm5-vibe-tags span {
  display: inline-flex;
  padding: 9px 13px;
  border: 1px solid var(--gm5-border);
  border-radius: 999px;
  color: var(--gm5-white);
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gm5-idx-box {
  padding: 44px;
  background:
    radial-gradient(circle at top right, rgba(200, 169, 110, 0.16), transparent 34%),
    var(--gm5-bg-3);
}

.gm5-idx-widget {
  margin: 24px 0;
  padding: 24px;
  background: var(--gm5-bg-2);
  border: 1px solid var(--gm5-border-soft);
}

.gm5-vip-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 40px;
  padding: 50px;
  background:
    linear-gradient(135deg, rgba(200, 169, 110, 0.15), transparent 42%),
    var(--gm5-bg-3);
}

.gm5-form-placeholder {
  padding: 28px;
  background: var(--gm5-bg-2);
  border: 1px solid var(--gm5-border-soft);
}

.gm5-floor-plans {
  display: grid;
  gap: 14px;
}

.gm5-floor-plan {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  padding: 26px;
}

.gm5-floor-plan h3 {
  margin: 0;
  color: var(--gm5-white);
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 400;
}

.gm5-plan-meta {
  display: flex;
  gap: 16px;
  color: var(--gm5-muted);
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gm5-empty {
  display: inline-flex;
  padding: 12px 16px;
  background: rgba(16, 20, 29, 0.72);
  border: 1px solid rgba(200, 169, 110, 0.18);
  border-radius: 2px;
  color: var(--gm5-muted);
  font-family: "Jost", sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
}

@media (max-width: 1024px) {
  .gm5-card-grid,
  .gm5-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gm5-stats-grid,
  .gm5-facts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gm5-split,
  .gm5-vip-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .gm5-section,
  .gm5-section-dark {
    padding: 60px 20px;
  }

  .gm5-hero {
    min-height: 70vh;
    padding: 120px 20px 60px;
  }

  .gm5-hero-overlay {
    background: linear-gradient(0deg, rgba(6, 8, 12, 0.96) 0%, rgba(6, 8, 12, 0.68) 100%);
  }

  .gm5-card-grid,
  .gm5-mini-grid,
  .gm5-amenities-grid,
  .gm5-gallery-grid,
  .gm5-stats-grid,
  .gm5-facts-grid {
    grid-template-columns: 1fr;
  }

  .gm5-card-body,
  .gm5-split > .gm5-card,
  .gm5-content-card,
  .gm5-idx-box,
  .gm5-vip-box {
    padding: 28px;
  }

  .gm5-card-media,
  .gm5-gallery-item {
    min-height: 230px;
  }

  .gm5-floor-plan {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gm5-plan-meta {
    flex-direction: column;
    gap: 6px;
  }
}

/* GiveMe5 dynamic single templates: screenshot-aligned layout */
.gm5-template-shell {
  background: #06080c;
  color: rgba(255, 255, 255, 0.72);
}

.gm5-template-section {
  background: #06080c;
  padding: 92px 40px;
}

.gm5-template-section.gm5-template-alt {
  background: #080c12;
}

.gm5-template-section > .e-con-inner,
.gm5-template-section > .elementor-container,
.gm5-section-inner,
.gm5-split-hero-inner {
  width: min(1140px, 100%);
  margin-inline: auto;
}

.gm5-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

.gm5-section-kicker,
.gm5-template-section .elementor-divider__text {
  color: #c8a96e;
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.gm5-template-section .elementor-divider-separator {
  border-color: #c8a96e !important;
}

.gm5-template-section .elementor-heading-title {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.gm5-section-heading-copy,
.gm5-template-section .elementor-widget-text-editor {
  color: rgba(255, 255, 255, 0.62);
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
}

.gm5-split-hero {
  min-height: auto;
  padding: 132px 40px 48px;
  background:
    radial-gradient(circle at 75% 22%, rgba(200, 169, 110, 0.08), transparent 28%),
    #06080c;
}

.gm5-split-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 64px;
  align-items: center;
}

.gm5-hero-copy {
  max-width: 580px;
}

.gm5-split-hero .gm5-title {
  max-width: 620px;
  font-size: clamp(46px, 5.8vw, 82px);
  line-height: 0.98;
}

.gm5-split-hero .gm5-hero-tagline {
  max-width: 560px;
  margin-top: 18px;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: clamp(23px, 2.2vw, 34px);
}

.gm5-split-hero .gm5-hero-intro {
  max-width: 560px;
  margin: 20px 0 26px;
}

.gm5-hero-image-frame {
  position: relative;
  min-height: 520px;
  padding: 10px;
  background: #10141d;
  border: 1px solid rgba(200, 169, 110, 0.34);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.gm5-hero-image {
  min-height: 500px;
  background-position: center;
  background-size: cover;
  filter: saturate(0.94) contrast(1.03);
}

.gm5-hero-image-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  background: linear-gradient(180deg, rgba(6, 8, 12, 0.08), rgba(6, 8, 12, 0.34));
  pointer-events: none;
}

.gm5-image-caption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  padding: 11px 18px;
  background: rgba(200, 169, 110, 0.16);
  border: 1px solid rgba(200, 169, 110, 0.7);
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 20px;
}

.gm5-stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1140px, calc(100% - 80px));
  margin: 0 auto;
  background: #10141d;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.gm5-stats-band .gm5-stat-card {
  min-height: 112px;
  padding: 26px 30px;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0;
  box-shadow: none;
}

.gm5-stats-band .gm5-stat-card:last-child {
  border-right: 0;
}

.gm5-stats-band .gm5-stat-card strong {
  font-size: 34px;
}

.gm5-editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: 56px;
  align-items: start;
}

.gm5-section-title {
  margin: 0 0 26px;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.06;
}

.gm5-lede-card,
.gm5-content-card {
  padding: 42px;
  background: #10141d;
  border: 1px solid rgba(200, 169, 110, 0.26);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.gm5-side-card {
  padding: 34px;
}

.gm5-map-note {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.52);
  font-family: "Jost", sans-serif;
  font-size: 13px;
  line-height: 1.65;
}

.gm5-card-grid {
  gap: 3px;
}

.gm5-condo-card,
.gm5-project-card,
.gm5-todo-card {
  background: #10141d;
  border-color: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.gm5-condo-card:hover,
.gm5-project-card:hover,
.gm5-todo-card:hover {
  border-color: rgba(200, 169, 110, 0.65);
  background: #151a25;
}

.gm5-condo-card .gm5-card-media,
.gm5-project-card .gm5-card-media {
  min-height: 330px;
}

.gm5-card .gm5-eyebrow {
  margin-bottom: 12px;
  font-size: 9px;
}

.gm5-card .gm5-eyebrow::before {
  width: 28px;
}

.gm5-highlight-card {
  padding: 30px;
}

.gm5-highlight-card h3 {
  margin-top: 18px;
  font-size: 24px;
}

.gm5-gallery-grid {
  gap: 3px;
}

.gm5-gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gm5-amenities-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3px;
}

.gm5-amenity-card {
  min-height: 104px;
  background: #10141d;
  border-color: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.gm5-facts-grid {
  gap: 3px;
}

.gm5-fact-card {
  min-height: 128px;
  background: #10141d;
  border-color: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.gm5-idx-box,
.gm5-vip-box {
  background:
    radial-gradient(circle at 94% 12%, rgba(200, 169, 110, 0.12), transparent 32%),
    #10141d;
  border-color: rgba(200, 169, 110, 0.28);
  box-shadow: none;
}

.gm5-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
}

.gm5-vip-box {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.52fr);
}

.gm5-check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Jost", sans-serif;
  font-size: 14px;
}

.gm5-check-list li {
  position: relative;
  padding-left: 24px;
}

.gm5-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 9px;
  height: 1px;
  background: #c8a96e;
}

.gm5-floor-plan {
  background: #10141d;
  border-color: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

/* Premium polish pass for neighborhood singles */
.gm5-split-hero {
  padding: 118px 40px 66px;
  background:
    radial-gradient(circle at 68% 26%, rgba(200, 169, 110, 0.13), transparent 30%),
    linear-gradient(90deg, #06080c 0%, #070b11 58%, #0d121b 100%);
}

.gm5-split-hero-inner {
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: 70px;
}

.gm5-hero-copy {
  padding: 32px 0;
}

.gm5-split-hero .gm5-title {
  font-size: clamp(54px, 6.4vw, 96px);
  letter-spacing: -0.045em;
}

.gm5-split-hero .gm5-hero-tagline {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(24px, 2.6vw, 39px);
  line-height: 1.14;
}

.gm5-split-hero .gm5-hero-intro {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
}

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

.gm5-hero-actions .gm5-button,
.gm5-split-hero .gm5-button {
  min-width: 178px;
  min-height: 52px;
  padding: 16px 30px;
  color: #06080c !important;
  font-size: 11px;
  letter-spacing: 0.18em;
}

.gm5-hero-actions .gm5-button-outline {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.24);
}

.gm5-hero-actions .gm5-button-outline:hover {
  color: #c8a96e !important;
  border-color: rgba(200, 169, 110, 0.8);
}

.gm5-hero-image-frame {
  min-height: 560px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(200, 169, 110, 0.14), rgba(255, 255, 255, 0.02)),
    #10141d;
  border-color: rgba(200, 169, 110, 0.42);
}

.gm5-hero-image {
  min-height: 536px;
}

.gm5-hero-image.gm5-card-media-placeholder {
  background:
    radial-gradient(circle at 72% 20%, rgba(200, 169, 110, 0.26), transparent 28%),
    linear-gradient(135deg, #151a25, #070b11);
}

.gm5-living-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: 34px;
}

.gm5-living-layout .gm5-lede-card {
  min-height: 190px;
  padding: 38px 42px;
  background:
    linear-gradient(135deg, rgba(200, 169, 110, 0.08), transparent 38%),
    #10141d;
  border-color: rgba(200, 169, 110, 0.32);
}

.gm5-living-layout .gm5-side-card {
  min-height: 190px;
  padding: 34px;
  background:
    radial-gradient(circle at 88% 18%, rgba(200, 169, 110, 0.14), transparent 34%),
    #10141d;
  border-color: rgba(200, 169, 110, 0.3);
}

.gm5-vibe-tags {
  gap: 9px;
}

.gm5-vibe-tags span {
  padding: 10px 14px;
  background: rgba(200, 169, 110, 0.08);
  border-color: rgba(200, 169, 110, 0.38);
  color: rgba(255, 255, 255, 0.82);
}

.gm5-investment-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 42px;
  align-items: stretch;
}

.gm5-investment-copy {
  display: flex;
  flex-direction: column;
}

.gm5-investment-copy .gm5-section-title {
  margin-bottom: 24px;
}

.gm5-investment-layout .gm5-lede-card {
  flex: 1;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(200, 169, 110, 0.1), transparent 40%),
    #10141d;
  border-color: rgba(200, 169, 110, 0.34);
}

.gm5-investment-layout .gm5-mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gm5-investment-layout .gm5-highlight-card {
  min-height: 245px;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(200, 169, 110, 0.08), transparent 38%),
    #10141d;
  border-color: rgba(200, 169, 110, 0.26);
}

.gm5-investment-layout .gm5-highlight-card h3 {
  font-size: 28px;
  line-height: 1.1;
}

.gm5-investment-layout .gm5-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  background: rgba(200, 169, 110, 0.1);
}

.gm5-investment-layout .gm5-icon {
  font-size: 19px;
}

@media (max-width: 1024px) {
  .gm5-split-hero-inner,
  .gm5-section-heading,
  .gm5-editorial-split,
  .gm5-investment-layout,
  .gm5-cta-band,
  .gm5-vip-box {
    grid-template-columns: 1fr;
  }

  .gm5-hero-image-frame,
  .gm5-hero-image {
    min-height: 420px;
  }

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

@media (max-width: 767px) {
  .gm5-template-section,
  .gm5-split-hero {
    padding: 60px 20px;
  }

  .gm5-split-hero {
    padding-top: 92px;
  }

  .gm5-stats-band {
    width: calc(100% - 40px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gm5-stats-band .gm5-stat-card:nth-child(2n) {
    border-right: 0;
  }

  .gm5-hero-image-frame,
  .gm5-hero-image {
    min-height: 320px;
  }

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

  .gm5-investment-layout .gm5-mini-grid {
    grid-template-columns: 1fr;
  }

  .gm5-lede-card,
  .gm5-content-card,
  .gm5-idx-box,
  .gm5-vip-box {
    padding: 28px;
  }

  .gm5-gallery-item:first-child {
    grid-column: auto;
    grid-row: auto;
  }
}
