/* =========================================================
   LUMIVEX — Real Estate Investment Page
   ========================================================= */

/* ---------- Hero ---------- */
.re-hero {
  position: relative;
  min-height: 94vh;
  min-height: 94dvh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  overflow: hidden;
}

.re-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.re-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  will-change: transform;
}

.re-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.25) 0%, rgba(5, 5, 5, 0.65) 45%, #050505 100%),
    linear-gradient(105deg, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.35) 50%, transparent 72%);
}

.re-hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 75% 35%, rgba(212, 175, 55, 0.22), transparent 55%),
    radial-gradient(ellipse 40% 30% at 15% 75%, rgba(240, 215, 140, 0.1), transparent 50%);
  pointer-events: none;
}

.re-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, transparent, black 30%, black 70%, transparent);
  pointer-events: none;
  opacity: 0.6;
}

.re-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.rh-eyebrow {
  margin-bottom: 1.2rem;
  text-shadow: 0 0 30px var(--gold-glow);
}

.re-hero-title {
  font-size: clamp(2.8rem, 6.2vw, 5.2rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 1.35rem;
}

.re-hero-title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, #FFF3C4, var(--gold-light), var(--gold), var(--gold-dark));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: reGoldText 7s linear infinite;
}

@keyframes reGoldText {
  to { background-position: 200% center; }
}

.rh-line {
  display: block;
  overflow: hidden;
}

.rh-line > span {
  display: inline-block;
}

.re-hero-sub {
  color: var(--text-muted);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  max-width: 48ch;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.re-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.re-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.re-hstat {
  padding: 1rem 1.35rem;
  min-width: 120px;
}

.re-hstat strong {
  display: block;
  font-size: 1.55rem;
  font-weight: 700;
  background: linear-gradient(90deg, #fff, var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.2rem;
}

.re-hstat span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ---------- Luxury cards ---------- */
.lux-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.lux-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(17, 17, 17, 0.65);
  transition: border-color 0.4s, transform 0.45s var(--ease), box-shadow 0.4s;
}

.lux-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.lux-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.lux-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.lux-card:hover .lux-media img {
  transform: scale(1.08);
}

.lux-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 4px;
  font-weight: 600;
}

.lux-body {
  padding: 1.5rem 1.4rem 1.65rem;
}

.lux-loc {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.lux-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.55rem;
}

.lux-body > p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.15rem;
}

.lux-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  color: var(--text-dim);
}

.lux-meta em {
  font-style: normal;
  color: var(--gold-light);
  font-weight: 600;
  margin-right: 0.25rem;
}

/* ---------- Split commercial / residential ---------- */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split-block.reverse .split-visual {
  order: 2;
}

.split-block.reverse .split-copy {
  order: 1;
}

.split-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-soft), 0 0 40px rgba(212, 175, 55, 0.1);
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-float {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  padding: 1rem 1.25rem;
  text-align: center;
  animation: reFloat 5.5s ease-in-out infinite;
}

.split-float.right {
  left: auto;
  right: 1.25rem;
}

.split-float strong {
  display: block;
  font-size: 1.75rem;
  background: linear-gradient(135deg, #fff, var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.split-float span {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

@keyframes reFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.split-copy h2 {
  margin-bottom: 1.1rem;
}

.split-copy > p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  max-width: 48ch;
}

.re-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.75rem;
}

.re-checklist li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.re-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 12px var(--gold-glow);
}

/* ---------- Rental yields ---------- */
.re-rental {
  background: linear-gradient(180deg, transparent, rgba(17, 17, 17, 0.75), transparent);
}

.yield-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.yield-card {
  padding: 2rem 1.75rem;
  text-align: center;
  transition: border-color 0.4s, transform 0.4s var(--ease), box-shadow 0.4s;
}

.yield-card:hover,
.yield-card.featured {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: var(--shadow-gold);
}

.yield-card.featured {
  transform: translateY(-6px);
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.12), rgba(17, 17, 17, 0.9));
}

.yield-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.yield-num {
  display: block;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  background: linear-gradient(135deg, #fff, var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.65rem;
}

.yield-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.yield-bar {
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.yield-bar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transition: width 1.4s var(--ease);
}

.yield-card.is-inview .yield-bar i {
  width: var(--w);
}

/* ---------- Appreciation chart ---------- */
.apprec-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.apprec-copy h2 {
  margin-bottom: 1.1rem;
}

.apprec-copy > p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 46ch;
}

.apprec-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.apprec-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.apprec-stats strong {
  font-size: 1.65rem;
  background: linear-gradient(90deg, #fff, var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.apprec-stats span {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.fine-print {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.apprec-chart {
  padding: 1.5rem 1.25rem 1.25rem;
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  color: var(--text-dim);
}

.chart-legend i {
  display: inline-block;
  width: 18px;
  height: 3px;
  margin-right: 0.45rem;
  vertical-align: middle;
  border-radius: 2px;
}

.lg-income {
  background: var(--gold-light);
}

.lg-value {
  background: rgba(255, 255, 255, 0.55);
}

#reChart {
  width: 100%;
  height: 340px;
  display: block;
}

/* ---------- Featured projects ---------- */
.project-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.project-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(17, 17, 17, 0.7);
  transition: border-color 0.4s, box-shadow 0.4s;
}

.project-card:hover {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: var(--shadow-gold);
}

.project-media {
  min-height: 280px;
  overflow: hidden;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.project-card:hover .project-media img {
  transform: scale(1.06);
}

.project-body {
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.project-status {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
}

.project-status.open {
  background: rgba(80, 200, 120, 0.15);
  color: #7dffb0;
}

.project-status.filling {
  background: rgba(212, 175, 55, 0.18);
  color: var(--gold-light);
}

.project-status.soon {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.project-type {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.project-body h3 {
  font-size: 1.65rem;
  margin-bottom: 0.65rem;
}

.project-body > p {
  color: var(--text-muted);
  margin-bottom: 1.35rem;
  max-width: 48ch;
}

.project-dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.35rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.project-dl dt {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.3rem;
}

.project-dl dd {
  font-size: 1.05rem;
  color: var(--gold-light);
  font-weight: 600;
}

/* ---------- Gallery ---------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.g-filter {
  appearance: none;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: transparent;
  color: var(--text-muted);
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}

.g-filter:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.g-filter.is-active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: transparent;
  color: #0a0a0a;
  font-weight: 600;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gal-item {
  position: relative;
  appearance: none;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-sm);
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: #111;
  transition: border-color 0.35s, transform 0.4s var(--ease), opacity 0.4s, box-shadow 0.35s;
}

.gal-item.is-hidden {
  display: none;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.4s;
}

.gal-item span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(5, 5, 5, 0.92));
  color: #fff;
  font-size: 0.9rem;
  text-align: left;
  transform: translateY(6px);
  opacity: 0.85;
  transition: transform 0.35s, opacity 0.35s;
}

.gal-item:hover {
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.gal-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.08);
}

.gal-item:hover span {
  transform: translateY(0);
  opacity: 1;
}

/* Lightbox */
.re-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(12px);
  padding: 2rem;
}

.re-lightbox[hidden] {
  display: none !important;
}

.lb-figure {
  max-width: min(920px, 92vw);
  margin: 0;
  text-align: center;
}

.lb-figure img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lb-figure figcaption {
  margin-top: 1rem;
  color: var(--gold-light);
  font-size: 0.95rem;
}

.lb-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  appearance: none;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.25s, color 0.25s;
}

.lb-close:hover {
  opacity: 1;
  color: var(--gold-light);
}

.lb-nav {
  appearance: none;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(17, 17, 17, 0.8);
  color: var(--gold-light);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.75rem;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.25s, border-color 0.25s;
}

.lb-nav:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold);
}

.lb-nav.prev { left: 1.25rem; }
.lb-nav.next { right: 1.25rem; }

/* ---------- ROI ---------- */
.re-roi {
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.04), transparent);
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.roi-card {
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.35s, transform 0.4s var(--ease);
}

.roi-card:hover {
  border-color: rgba(212, 175, 55, 0.45);
  transform: translateY(-5px);
}

.roi-card strong {
  display: block;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  background: linear-gradient(135deg, #fff, var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}

.roi-card span {
  font-size: 0.82rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* ---------- Process ---------- */
.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: none;
}

.process-step {
  position: relative;
  padding: 1.75rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(17, 17, 17, 0.55);
  transition: border-color 0.35s, transform 0.4s var(--ease);
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2.4rem;
  right: -0.55rem;
  width: 0.7rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  z-index: 1;
}

.process-step:hover {
  border-color: rgba(212, 175, 55, 0.45);
  transform: translateY(-5px);
}

.ps-num {
  display: block;
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* ---------- Testimonials ---------- */
.testi-slider {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.testi-track {
  position: relative;
  min-height: 220px;
}

.testi-card {
  position: absolute;
  inset: 0;
  padding: 2.5rem 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.5s, transform 0.5s, visibility 0.5s;
  margin: 0;
}

.testi-card.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.testi-card p {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-style: italic;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.5rem;
}

.testi-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testi-card strong {
  color: var(--gold-light);
  font-size: 0.95rem;
}

.testi-card span {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.testi-dots button {
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.testi-dots button.is-active {
  background: var(--gold);
  transform: scale(1.2);
}

/* ---------- CTA ---------- */
.re-cta {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

.re-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.re-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.re-cta-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, #050505 0%, rgba(5, 5, 5, 0.75) 40%, rgba(5, 5, 5, 0.85) 100%),
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(212, 175, 55, 0.15), transparent 70%);
}

.re-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.re-cta-inner h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
}

.re-cta-inner > p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.re-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .process-track {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .roi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .lux-grid,
  .yield-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split-block,
  .split-block.reverse,
  .apprec-layout,
  .project-card {
    grid-template-columns: 1fr;
  }

  .split-block.reverse .split-visual,
  .split-block.reverse .split-copy {
    order: unset;
  }

  .project-media {
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 640px) {
  .lux-grid,
  .yield-grid,
  .gallery-grid,
  .roi-grid,
  .process-track {
    grid-template-columns: 1fr;
  }

  .project-dl {
    grid-template-columns: 1fr;
  }

  .yield-card.featured {
    transform: none;
  }

  .lb-nav {
    display: none;
  }

  .re-hero {
    min-height: auto;
    padding-bottom: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .re-hero-title em,
  .split-float,
  .lux-media img,
  .project-media img {
    animation: none !important;
    transition: none !important;
  }
}
