/* ============================================
   EDITH REAL ESTATE — COMPONENTS
   Tightened Spacing + Editorial Composition
   ============================================ */

/* ---------- INTRO ---------- */
.intro {
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}
.intro__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.intro__headline {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: var(--weight-bold);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.intro__body { max-width: 480px; }
.intro__body p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
  font-size: var(--text-body-lg);
}
.intro__tagline {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--gold-primary);
  letter-spacing: var(--tracking-wide);
  margin-top: var(--space-lg);
}

/* ---------- PROPERTY DISCOVERY ---------- */
.discovery {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}
.discovery__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}
.discovery__header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}
.discovery__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
}
.discovery-card {
  display: block;
  padding: var(--space-xl) var(--space-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--duration-slow) var(--ease-out);
  position: relative;
  overflow: hidden;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.discovery-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--duration-slow) var(--ease-out);
}
.discovery-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.discovery-card:hover::after { width: 100%; }
.discovery-card__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
}
.discovery-card__label {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  transition: color var(--duration-fast) var(--ease-out);
}
.discovery-card:hover .discovery-card__label { color: var(--gold-light); }
.discovery-card__desc {
  font-size: var(--text-small);
  color: var(--text-secondary);
  line-height: 1.5;
}
.discovery-card__arrow {
  width: 18px;
  height: 18px;
  stroke: var(--text-muted);
  margin-top: var(--space-sm);
  transition: all var(--duration-normal) var(--ease-out);
}
.discovery-card:hover .discovery-card__arrow {
  stroke: var(--gold-primary);
  transform: translateX(4px);
}

/* ---------- BRAND STATEMENT ---------- */
.brand-statement {
  background: var(--bg-primary);
  text-align: center;
  padding: var(--space-3xl) 0;
  position: relative;
}
.brand-statement::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}
.brand-statement::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}
.brand-statement__inner {
  max-width: 700px;
  margin: 0 auto;
}
.brand-statement__quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  line-height: 1.35;
  letter-spacing: var(--tracking-tight);
  font-style: italic;
  margin-bottom: var(--space-xl);
}
.brand-statement__sub {
  font-size: var(--text-label);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: var(--space-lg);
}

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  padding: 1.25rem 0;
  transition: all var(--duration-slow) var(--ease-out);
}
.header.scrolled {
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.75rem 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo { flex-shrink: 0; }
.header__logo img {
  height: 40px;
  width: auto;
  transition: height var(--duration-slow) var(--ease-out), opacity var(--duration-fast) var(--ease-out);
}
.header.scrolled .header__logo img { height: 32px; }
.header__logo:hover img { opacity: 0.85; }
.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header__nav-link {
  font-size: var(--text-small);
  font-weight: var(--weight-medium);
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: var(--tracking-wide);
  transition: color var(--duration-fast) var(--ease-out);
  position: relative;
  padding: 0.25rem 0;
}
.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-primary);
  transition: width var(--duration-normal) var(--ease-out);
}
.header__nav-link:hover, .header__nav-link.active { color: var(--text-primary); }
.header__nav-link:hover::after, .header__nav-link.active::after { width: 100%; }
.header__cta { margin-left: 1.5rem; }

.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: calc(var(--z-mobile-menu) + 10);
}
.header__toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: all var(--duration-normal) var(--ease-out);
  transform-origin: center;
}
.header__toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.header__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.header__toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-mobile-menu);
  background: rgba(8, 8, 8, 0.98);
  backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-slow) var(--ease-out);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu__link {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: rgba(255, 255, 255, 0.4);
  padding: 0.6rem 0;
  transition: color var(--duration-fast) var(--ease-out),
              transform var(--duration-slow) var(--ease-out),
              opacity var(--duration-slow) var(--ease-out);
  transform: translateY(20px);
  opacity: 0;
  letter-spacing: 0.02em;
}
.mobile-menu.open .mobile-menu__link { transform: translateY(0); opacity: 1; }
.mobile-menu.open .mobile-menu__link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu__link:nth-child(2) { transition-delay: 0.14s; }
.mobile-menu.open .mobile-menu__link:nth-child(3) { transition-delay: 0.18s; }
.mobile-menu.open .mobile-menu__link:nth-child(4) { transition-delay: 0.22s; }
.mobile-menu.open .mobile-menu__link:nth-child(5) { transition-delay: 0.26s; }
.mobile-menu.open .mobile-menu__link:nth-child(6) { transition-delay: 0.30s; }
.mobile-menu.open .mobile-menu__link:nth-child(7) { transition-delay: 0.34s; }
.mobile-menu__link:hover { color: var(--gold-primary); }
.mobile-menu__cta {
  margin-top: var(--space-xl);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--duration-slow) var(--ease-out);
}
.mobile-menu.open .mobile-menu__cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.45s;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg-deep);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform-origin: center center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(8, 8, 8, 0.35) 0%,
    rgba(8, 8, 8, 0.05) 35%,
    rgba(8, 8, 8, 0.15) 55%,
    rgba(8, 8, 8, 0.6) 75%,
    rgba(12, 12, 12, 0.98) 100%
  );
  z-index: 1;
}
.hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(8, 8, 8, 0.5) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero__orbital {
  position: absolute;
  top: 50%;
  right: -8%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.05);
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}
.hero__orbital::before {
  content: '';
  position: absolute;
  inset: 50px;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.03);
}
.hero__orbital::after {
  content: '';
  position: absolute;
  top: 8%;
  right: 3%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  border-top-color: rgba(59, 130, 246, 0.08);
  border-right-color: rgba(59, 130, 246, 0.03);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(3rem, 6vh, 6rem);
  max-width: 900px;
}
.hero__headline {
  font-size: var(--text-hero);
  font-weight: var(--weight-bold);
  line-height: var(--text-hero-line);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-lg);
  overflow: hidden;
}
.hero__headline .hero__line {
  display: block;
  overflow: hidden;
}
.hero__headline .hero__line-inner {
  display: block;
  transform: translateY(110%);
  will-change: transform;
}
.hero__headline .gold {
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: var(--space-xl);
  opacity: 0;
  transform: translateY(20px);
}
.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}
.hero__scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
}
.hero__scroll-indicator span {
  font-size: var(--text-label);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero__scroll-indicator .scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--gold-primary), transparent);
  opacity: 0.5;
  animation: scroll-pulse 2s var(--ease-in-out) infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(0.6); opacity: 0.2; }
}

/* ---------- QUICK SEARCH ---------- */
.quick-search {
  position: relative;
  z-index: 3;
  margin-top: -40px;
  padding-bottom: var(--section-padding);
}
.quick-search__inner {
  background: rgba(20, 20, 20, 0.92);
  backdrop-filter: blur(24px) saturate(1.1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  gap: var(--space-md);
  align-items: flex-end;
}
.quick-search__field { flex: 1; min-width: 0; }
.quick-search__field label {
  display: block;
  font-size: var(--text-label);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}
.quick-search__field select,
.quick-search__field input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: var(--text-small);
  appearance: none;
  -webkit-appearance: none;
  transition: border-color var(--duration-fast) var(--ease-out);
  cursor: pointer;
}
.quick-search__field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235A5A5A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 2.5rem;
}
.quick-search__field select:hover,
.quick-search__field select:focus,
.quick-search__field input:hover,
.quick-search__field input:focus {
  border-color: rgba(212, 175, 55, 0.3);
  outline: none;
}
.quick-search__btn { flex-shrink: 0; }

/* ---------- PROPERTY CARDS ---------- */
.property-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--duration-slow) var(--ease-out),
              box-shadow var(--duration-slow) var(--ease-out),
              border-color var(--duration-slow) var(--ease-out);
  position: relative;
}
.property-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}
.property-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.property-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-dramatic) var(--ease-out);
}
.property-card:hover .property-card__image img { transform: scale(1.05); }
.property-card__accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--duration-slow) var(--ease-out);
  z-index: 2;
}
.property-card:hover .property-card__accent { width: 100%; }
.property-card__status {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: 0.3rem 0.8rem;
  font-size: var(--text-label);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  background: rgba(12, 12, 12, 0.75);
  backdrop-filter: blur(8px);
  color: var(--gold-primary);
  border: 1px solid rgba(212, 175, 55, 0.2);
  z-index: 1;
}
.property-card__body { padding: var(--space-lg); }
.property-card__location {
  font-size: var(--text-label);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}
.property-card__title {
  font-family: var(--font-display);
  font-size: var(--text-card-title);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
  transition: color var(--duration-fast) var(--ease-out);
}
.property-card:hover .property-card__title { color: var(--gold-light); }
.property-card__price {
  font-size: 1.375rem;
  font-weight: var(--weight-bold);
  color: var(--gold-primary);
  margin-bottom: var(--space-md);
  letter-spacing: var(--tracking-tight);
}
.property-card__meta {
  display: flex;
  gap: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-subtle);
  margin-bottom: var(--space-md);
}
.property-card__meta-item {
  font-size: var(--text-meta);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}
.property-card__meta-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-muted);
}
.property-card:hover .property-card__meta-item svg { stroke: var(--gold-primary); }
.property-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-small);
  font-weight: var(--weight-bold);
  color: var(--gold-primary);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  transition: all var(--duration-normal) var(--ease-out);
}
.property-card__link:hover { gap: var(--space-md); color: var(--gold-light); }
.property-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--duration-normal) var(--ease-out);
}
.property-card__link:hover svg { transform: translateX(4px); }

/* ---------- SERVICES ---------- */
.services {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}
.services__orbital {
  position: absolute;
  top: -80px;
  right: -100px;
  width: 400px;
  height: 400px;
  pointer-events: none;
  opacity: 0;
}
.services__orbital svg { width: 100%; height: 100%; }
.services-arc-path {
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.service-panel {
  padding: var(--space-xl) var(--space-lg);
  border-right: 1px solid var(--border-subtle);
  position: relative;
  transition: background var(--duration-slow) var(--ease-out);
  overflow: hidden;
}
.service-panel:last-child { border-right: none; }
.service-panel::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--duration-slow) var(--ease-out);
}
.service-panel:hover { background: rgba(212, 175, 55, 0.015); }
.service-panel:hover::before { width: 100%; }
.service-panel__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: var(--weight-bold);
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  margin-bottom: var(--space-md);
  transition: color var(--duration-slow) var(--ease-out);
}
.service-panel:hover .service-panel__number { color: rgba(212, 175, 55, 0.1); }
.service-panel__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.25;
  transition: color var(--duration-fast) var(--ease-out);
}
.service-panel:hover .service-panel__title { color: var(--gold-light); }
.service-panel__desc {
  font-size: var(--text-small);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
}
.service-panel__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-label);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--gold-primary);
  transition: all var(--duration-normal) var(--ease-out);
}
.service-panel__link:hover { gap: var(--space-md); color: var(--gold-light); }
.service-panel__link svg { transition: transform var(--duration-normal) var(--ease-out); }
.service-panel__link:hover svg { transform: translateX(3px); }

/* ---------- VIDEO SECTION — TIGHTER ---------- */
.video-section {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-deep);
}
.video-section__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.video-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
.video-section__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(8, 8, 8, 0.25) 0%, rgba(8, 8, 8, 0.65) 100%);
  z-index: 1;
}
.video-section__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  padding: 0 var(--container-padding);
}
.video-section__headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.video-section__sub {
  font-size: var(--text-section-sub);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto;
}

/* Play button */
.play-btn {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-primary);
  background: rgba(212, 175, 55, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  cursor: pointer;
  transition: all var(--duration-slow) var(--ease-out);
}
.play-btn::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.12);
  animation: play-ring 3s var(--ease-in-out) infinite;
}
@keyframes play-ring {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.2; transform: scale(1.04); }
}
.play-btn:hover {
  background: rgba(212, 175, 55, 0.12);
  transform: scale(1.06);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
}
.play-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--gold-primary);
  margin-left: 3px;
}
/* Social links inside video section on homepage */
.video-section .social-cta__links {
  position: relative;
  z-index: 2;
}
.video-section .social-cta__link {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
}
.video-section .social-cta__link:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

/* ---------- SERVICE CARDS (Homepage) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}
.service-card {
  display: flex;
  flex-direction: column;
  padding: var(--space-xl);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  text-decoration: none;
  transition: border-color var(--duration-slow) var(--ease-out), transform var(--duration-slow) var(--ease-out);
  overflow: hidden;
}
.service-card:hover {
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}
.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-lg);
  color: var(--gold-primary);
}
.service-card__icon svg {
  width: 100%;
  height: 100%;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-card-title);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}
.service-card:hover .service-card__title { color: var(--gold-light); }
.service-card__desc {
  font-size: var(--text-body);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  flex: 1;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--gold-primary);
  letter-spacing: 0.04em;
  transition: gap var(--duration-normal) var(--ease-out);
}
.service-card:hover .service-card__link { gap: var(--space-md); }
.service-card__link svg { transition: transform var(--duration-normal) var(--ease-out); }
.service-card:hover .service-card__link svg { transform: translateX(3px); }

/* ---------- PROPERTY GRID (Homepage/Archive) ---------- */
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}
.property-card__loading {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
}

/* ---------- INSIGHTS ---------- */
.insights { background: var(--bg-primary); }
.insights__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-2xl);
}
.insights__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-lg);
}
.insights__grid .insight-card:first-child { grid-row: 1 / 3; }
.insight-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
  position: relative;
}
.insight-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--duration-slow) var(--ease-out);
  z-index: 2;
}
.insight-card:hover {
  border-color: rgba(212, 175, 55, 0.1);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.insight-card:hover::after { width: 100%; }
.insight-card__image { aspect-ratio: 16 / 10; overflow: hidden; }
.insights__grid .insight-card:first-child .insight-card__image { aspect-ratio: 16 / 9; }
.insight-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-dramatic) var(--ease-out);
}
.insight-card:hover .insight-card__image img { transform: scale(1.04); }
.insight-card__body { padding: var(--space-lg); }
.insights__grid .insight-card:first-child .insight-card__body { padding: var(--space-xl); }
.insight-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}
.insight-card__category {
  font-size: var(--text-label);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--gold-primary);
}
.insight-card__date { font-size: var(--text-meta); color: var(--text-muted); }
.insight-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.35;
  transition: color var(--duration-fast) var(--ease-out);
}
.insights__grid .insight-card:first-child .insight-card__title { font-size: 1.375rem; }
.insight-card:hover .insight-card__title { color: var(--gold-light); }
.insight-card__excerpt {
  font-size: var(--text-small);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}
.insight-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-label);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--gold-primary);
  transition: all var(--duration-normal) var(--ease-out);
}
.insight-card__link:hover { gap: var(--space-md); color: var(--gold-light); }

/* ---------- SOCIAL CTA ---------- */
.social-cta {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  position: relative;
}
.social-cta__orbital {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.03);
  pointer-events: none;
}
.social-cta__orbital::before {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.02);
}
.social-cta__links {
  display: flex;
  gap: var(--space-xl);
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.social-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: var(--text-body);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
  transition: all var(--duration-slow) var(--ease-out);
}
.social-cta__link:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.08);
}
.social-cta__link svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  flex-shrink: 0;
  transition: transform var(--duration-normal) var(--ease-out);
}
.social-cta__link:hover svg { transform: scale(1.1); }

/* ---------- FINAL CTA — TIGHTER ---------- */
.final-cta {
  position: relative;
  padding: var(--space-3xl) 0;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.04) 0%, transparent 50%), var(--bg-warm);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.final-cta__orbital {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.04);
  pointer-events: none;
}
.final-cta__orbital::before {
  content: '';
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.02);
}
.final-cta__content { position: relative; z-index: 1; }
.final-cta__headline {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.final-cta__sub {
  font-size: var(--text-body-lg);
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
}
.final-cta__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-3xl) 0 var(--space-lg);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: var(--space-lg);
}
.footer__brand-desc {
  font-size: var(--text-small);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-top: var(--space-lg);
  max-width: 300px;
}
.footer__logo img { height: 36px; width: auto; }
.footer__heading {
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: var(--space-lg);
}
.footer__links li { margin-bottom: 0.6rem; }
.footer__links a {
  font-size: var(--text-small);
  color: var(--text-secondary);
  transition: color var(--duration-fast) var(--ease-out),
              padding-left var(--duration-normal) var(--ease-out);
}
.footer__links a:hover { color: var(--gold-primary); padding-left: 4px; }
.footer__contact-item {
  font-size: var(--text-small);
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.footer__contact-item svg { width: 14px; height: 14px; stroke: var(--text-muted); flex-shrink: 0; }
.footer__contact-item a { color: var(--text-secondary); transition: color var(--duration-fast) var(--ease-out); }
.footer__contact-item a:hover { color: var(--gold-primary); }
.footer__social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-normal) var(--ease-out);
}
.footer__social-link:hover {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.06);
  transform: translateY(-2px);
}
.footer__social-link svg { width: 16px; height: 16px; fill: var(--text-secondary); transition: fill var(--duration-fast) var(--ease-out); }
.footer__social-link:hover svg { fill: var(--gold-primary); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__copy { font-size: var(--text-meta); color: var(--text-muted); }
.footer__legal { display: flex; gap: var(--space-lg); }
.footer__legal a {
  font-size: var(--text-meta);
  color: var(--text-muted);
  transition: color var(--duration-fast) var(--ease-out);
}
.footer__legal a:hover { color: var(--text-secondary); }

/* ---------- SOCIAL VIDEO SECTION ---------- */
.social-video-section__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}
.social-video-section__header .section-subtitle {
  margin: 0 auto;
}
.social-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}
.social-video-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--duration-slow) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.social-video-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--duration-slow) var(--ease-out);
}
.social-video-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.social-video-card:hover::after { width: 100%; }
.social-video-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-xl);
  transition: border-color var(--duration-fast) var(--ease-out);
}
.social-video-card:hover .social-video-card__icon { border-color: var(--gold-primary); }
.social-video-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--text-secondary);
  transition: stroke var(--duration-fast) var(--ease-out);
}
.social-video-card__icon svg[fill='currentColor'] {
  stroke: none;
  fill: var(--text-secondary);
  transition: fill var(--duration-fast) var(--ease-out);
}
.social-video-card:hover .social-video-card__icon svg { stroke: var(--gold-primary); }
.social-video-card:hover .social-video-card__icon svg[fill='currentColor'] { fill: var(--gold-primary); }
.social-video-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  transition: color var(--duration-fast) var(--ease-out);
}
.social-video-card:hover .social-video-card__title { color: var(--gold-light); }
.social-video-card__handle {
  font-size: var(--text-body);
  color: var(--gold-primary);
  margin-bottom: var(--space-lg);
}
.social-video-card__desc {
  font-size: var(--text-small);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 340px;
  margin-bottom: var(--space-xl);
}
.social-video-card__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-label);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--gold-primary);
  transition: gap var(--duration-normal) var(--ease-out), color var(--duration-fast) var(--ease-out);
}
.social-video-card:hover .social-video-card__cta { gap: var(--space-md); color: var(--gold-light); }
.social-video-card__cta svg { transition: transform var(--duration-normal) var(--ease-out); }
.social-video-card:hover .social-video-card__cta svg { transform: translateX(3px); }
.social-video-note {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-subtle);
}
.social-video-note p {
  font-size: var(--text-small);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

/* ---------- CONTENT ARCHIVE ---------- */
.content-archive {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}
.content-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--duration-slow) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.content-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--duration-slow) var(--ease-out);
}
.content-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.content-card:hover::after { width: 100%; }
.content-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  background: rgba(212, 175, 55, 0.08);
  border-bottom: 1px solid var(--border-subtle);
  font-size: var(--text-label);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--gold-primary);
}
.content-card__badge svg {
  width: 14px;
  height: 14px;
}
.content-card__badge--fb {
  background: rgba(59, 130, 246, 0.08);
  color: var(--blue-electric);
}
.content-card__badge--fb svg {
  fill: var(--blue-electric);
  stroke: none;
}
.content-card__body {
  flex: 1;
  padding: var(--space-xl);
}
.content-card__category {
  font-size: var(--text-label);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: var(--space-sm);
}
.content-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  line-height: 1.3;
  transition: color var(--duration-fast) var(--ease-out);
}
.content-card:hover .content-card__title { color: var(--gold-light); }
.content-card__location {
  font-size: var(--text-small);
  color: var(--gold-primary);
  margin-bottom: var(--space-md);
}
.content-card__desc {
  font-size: var(--text-small);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}
.content-card__meta {
  font-size: var(--text-meta);
  color: var(--text-muted);
}
.content-card__footer {
  padding: var(--space-md) var(--space-xl);
  border-top: 1px solid var(--border-subtle);
}
.content-card__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-label);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--gold-primary);
  transition: gap var(--duration-normal) var(--ease-out), color var(--duration-fast) var(--ease-out);
}
.content-card:hover .content-card__cta { gap: var(--space-md); color: var(--gold-light); }
.content-card__cta svg { transition: transform var(--duration-normal) var(--ease-out); }
.content-card:hover .content-card__cta svg { transform: translateX(3px); }

/* Social Profiles Grid */
.social-profiles {
  text-align: center;
  margin-bottom: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--border-subtle);
}
.social-profiles__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-xl);
}
.social-profiles__grid {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}
.social-profile-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: var(--text-small);
  text-decoration: none;
  transition: all var(--duration-normal) var(--ease-out);
}
.social-profile-link:hover {
  border-color: var(--border-gold);
  color: var(--gold-primary);
  transform: translateY(-2px);
}
.social-profile-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ---------- FLOATING WHATSAPP (REMOVED — replaced by FAQ chat) ---------- */
/* .whatsapp-float rules removed */

/* ============================================
   JOURNAL / BLOG — Editorial Grid
   ============================================ */

/* ---------- SEARCH ---------- */
.journal-search { margin-bottom: var(--space-2xl); }
.journal-search__field {
  position: relative;
  width: 100%;
}
.journal-search__icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  stroke: var(--text-muted);
  pointer-events: none;
}
.journal-search__input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: var(--text-body);
  font-family: var(--font-body);
  transition: border-color var(--duration-fast) var(--ease-out);
}
.journal-search__input:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.3);
}
.journal-search__input::placeholder { color: var(--text-muted); }

/* ---------- CATEGORY FILTER ---------- */
.blog-categories {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}
.blog-categories__btn {
  padding: 0.5rem 1.25rem;
  font-size: var(--text-label);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  font-family: var(--font-body);
}
.blog-categories__btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}
.blog-categories__btn.active {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--text-dark);
}

/* ---------- SECONDARY HEADER ---------- */
.journal-secondary-header {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}
.journal-secondary-header__line {
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
}
.journal-secondary-header .section-label {
  white-space: nowrap;
  margin-bottom: 0;
}

/* ---------- JOURNAL GRID ---------- */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-xl);
}

/* ---------- BLOG FEATURED ---------- */
.blog-featured {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  margin-bottom: var(--space-3xl);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  transition: border-color var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-out);
}
.blog-featured:hover {
  border-color: rgba(212, 175, 55, 0.1);
  transform: translateY(-3px);
}
.blog-featured__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-featured__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-dramatic) var(--ease-out);
}
.blog-featured:hover .blog-featured__image img { transform: scale(1.04); }
.blog-featured__body { padding: var(--space-2xl) var(--space-2xl) var(--space-2xl) 0; }
.blog-featured__category {
  font-size: var(--text-label);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: var(--space-sm);
  display: block;
}
.blog-featured__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: var(--space-md);
  transition: color var(--duration-fast) var(--ease-out);
}
.blog-featured:hover .blog-featured__title { color: var(--gold-light); }
.blog-featured__excerpt {
  font-size: var(--text-body);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}
.blog-featured__meta {
  font-size: var(--text-meta);
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

/* ---------- BLOG CARD ---------- */
.blog-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: rgba(212, 175, 55, 0.1);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.blog-card__image-link {
  display: block;
}
.blog-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-dramatic) var(--ease-out);
}
.blog-card:hover .blog-card__image img { transform: scale(1.04); }
.blog-card__body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card__meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
}
.blog-card__category {
  font-size: var(--text-label);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 0;
}
.blog-card__date {
  font-size: var(--text-meta);
  color: var(--text-muted);
  margin-bottom: 0;
}
.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: var(--space-sm);
  transition: color var(--duration-fast) var(--ease-out);
}
.blog-card__title a {
  color: inherit;
  text-decoration: none;
}
.blog-card:hover .blog-card__title,
.blog-card:hover .blog-card__title a { color: var(--gold-light); }
.blog-card__excerpt {
  font-size: var(--text-small);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-md);
  flex: 1;
}
.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-subtle);
}
.blog-card__reading-time {
  font-size: var(--text-meta);
  color: var(--text-muted);
}
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-label);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--gold-primary);
  text-decoration: none;
  transition: gap var(--duration-normal) var(--ease-out);
}
.blog-card__link:hover { gap: var(--space-md); }
.blog-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--duration-normal) var(--ease-out);
}
.blog-card__link:hover svg { transform: translateX(3px); }

/* ============================================
   HOMEPAGE — LANDING PAGE SECTIONS
   Premium editorial composition
   ============================================ */

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--space-xl) 0;
  position: relative;
  z-index: 5;
}
.trust-strip__inner {
  display: flex;
  justify-content: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}
.trust-strip__item:hover { color: var(--gold-primary); }
.trust-strip__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  flex-shrink: 0;
  transition: border-color var(--duration-fast) var(--ease-out);
}
.trust-strip__item:hover .trust-strip__icon { border-color: var(--gold-primary); }
.trust-strip__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-primary);
}
.trust-strip__label {
  font-size: var(--text-small);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  color: var(--text-primary);
}
.trust-strip__sublabel {
  font-size: var(--text-meta);
  color: var(--text-muted);
  margin-top: 0.125rem;
}

/* ---------- BRAND STORY ---------- */
.brand-story {
  background: var(--bg-primary);
  padding: var(--section-padding-lg) 0;
  position: relative;
}
.brand-story__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-4xl);
  align-items: center;
}
.brand-story__content { max-width: 520px; }
.brand-story__eyebrow {
  font-size: var(--text-label);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: var(--space-lg);
  display: block;
}
.brand-story__headline {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: var(--weight-bold);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-xl);
  color: var(--text-primary);
}
.brand-story__headline .gold {
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.brand-story__text {
  font-size: var(--text-body-lg);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}
.brand-story__visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.brand-story__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-story__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: var(--radius-md);
  pointer-events: none;
}

/* ---------- FEATURED PROPERTY SPOTLIGHT ---------- */
.spotlight {
  background: var(--bg-surface);
  padding: var(--section-padding-lg) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}
.spotlight__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.spotlight__image {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.spotlight__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-dramatic) var(--ease-out);
}
.spotlight__image:hover img { transform: scale(1.03); }
.spotlight__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8,8,8,0.4) 100%);
  pointer-events: none;
}
.spotlight__badge {
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  padding: 0.4rem 1rem;
  font-size: var(--text-label);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--gold-primary);
  background: rgba(12, 12, 12, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-sm);
  z-index: 1;
}
.spotlight__info { padding: var(--space-lg) 0; }
.spotlight__location {
  font-size: var(--text-label);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}
.spotlight__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}
.spotlight__price {
  font-size: 1.5rem;
  font-weight: var(--weight-bold);
  color: var(--gold-primary);
  margin-bottom: var(--space-lg);
  letter-spacing: var(--tracking-tight);
}
.spotlight__desc {
  font-size: var(--text-body-lg);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
}
.spotlight__meta {
  display: flex;
  gap: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-subtle);
  margin-bottom: var(--space-xl);
}
.spotlight__meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-small);
  color: var(--text-secondary);
}
.spotlight__meta-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-muted);
}
.spotlight__empty {
  text-align: center;
  padding: var(--space-4xl) var(--container-padding);
  grid-column: 1 / -1;
}
.spotlight__empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-xl);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spotlight__empty-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--text-muted);
}
.spotlight__empty-title {
  font-family: var(--font-display);
  font-size: var(--text-section);
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}
.spotlight__empty-desc {
  font-size: var(--text-body-lg);
  color: var(--text-secondary);
  max-width: 440px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
}

/* ---------- VALUE PROPOSITION ---------- */
.value-prop {
  background: var(--bg-primary);
  padding: var(--section-padding-lg) 0;
  position: relative;
}
.value-prop__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}
.value-prop__item {
  padding: var(--space-xl);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: border-color var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
  text-decoration: none;
  display: block;
}
.value-prop__item:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
}
.value-prop__item-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-subtle);
  border-radius: 50%;
  margin-bottom: var(--space-lg);
}
.value-prop__item-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-primary);
}
.value-prop__item-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  transition: color var(--duration-fast) var(--ease-out);
}
.value-prop__item:hover .value-prop__item-title { color: var(--gold-light); }
.value-prop__item-desc {
  font-size: var(--text-small);
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ---------- VIDEO TEASER ---------- */
.video-teaser {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-deep);
}
.video-teaser__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.video-teaser__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-teaser__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(8, 8, 8, 0.85) 0%,
    rgba(8, 8, 8, 0.5) 50%,
    rgba(8, 8, 8, 0.7) 100%
  );
  z-index: 1;
}
.video-teaser__content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}
.video-teaser__label {
  font-size: var(--text-label);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: var(--space-md);
  display: block;
}
.video-teaser__headline {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: var(--weight-bold);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}
.video-teaser__desc {
  font-size: var(--text-body-lg);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
}
.video-teaser__featured {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-xl);
  text-decoration: none;
  transition: background var(--duration-fast) var(--ease-out);
}
.video-teaser__featured:hover { background: rgba(255,255,255,0.06); }
.video-teaser__featured-thumb {
  width: 80px;
  height: 56px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-teaser__featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-teaser__featured-info { flex: 1; min-width: 0; }
.video-teaser__featured-label {
  font-size: var(--text-label);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 0.25rem;
}
.video-teaser__featured-title {
  font-size: var(--text-small);
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.video-teaser__featured-arrow {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color var(--duration-fast) var(--ease-out);
}
.video-teaser__featured:hover .video-teaser__featured-arrow { color: var(--gold-primary); }

/* ---------- WHY EDITH ---------- */
.why-edith {
  background: var(--bg-surface);
  padding: var(--section-padding-lg) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.why-edith__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}
.why-edith__content { max-width: 520px; }
.why-edith__eyebrow {
  font-size: var(--text-label);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: var(--space-lg);
  display: block;
}
.why-edith__headline {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: var(--weight-bold);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: var(--space-xl);
}
.why-edith__text {
  font-size: var(--text-body-lg);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}
.why-edith__points {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.why-edith__point {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}
.why-edith__point-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-subtle);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.why-edith__point-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold-primary);
}
.why-edith__point-text {
  font-size: var(--text-small);
  color: var(--text-secondary);
  line-height: 1.65;
}
.why-edith__point-text strong {
  color: var(--text-primary);
  font-weight: var(--weight-semibold);
  display: block;
  margin-bottom: 0.125rem;
}
.why-edith__visual {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.why-edith__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-edith__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 175, 55, 0.06);
  border-radius: var(--radius-md);
  pointer-events: none;
}

/* ---------- ENHANCED FINAL CTA ---------- */
.final-cta--enhanced {
  background: var(--bg-deep);
  padding: var(--section-padding-lg) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta--enhanced::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.04);
  pointer-events: none;
}
.final-cta--enhanced::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.03);
  pointer-events: none;
}
.final-cta--enhanced .final-cta__headline {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: var(--weight-bold);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
}
.final-cta--enhanced .final-cta__sub {
  font-size: var(--text-body-lg);
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
}
.final-cta--enhanced .final-cta__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ---------- INSIGHTS HEADER ---------- */
.insights__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-2xl);
}
.insights__header .section-subtitle { max-width: 420px; }
.insights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

/* ---------- SR-ONLY ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
