/* ═══ HOME PAGE ═══ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background: url('/images/hero-bg.jpg') center/cover no-repeat; transform: scale(1.05); transition: transform 12s var(--ease-smooth); filter: brightness(0.4) saturate(0.9); }
.hero.visible .hero__bg { transform: scale(1); }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,35,50,0.3) 0%, rgba(26,35,50,0.5) 40%, rgba(26,35,50,0.9) 100%); z-index: 1; }
.hero__content { position: relative; z-index: 2; text-align: center; max-width: 860px; padding: 0 var(--space-xl); }
.hero__label { display: inline-flex; align-items: center; gap: 10px; font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--space-xl); animation: fadeInUp 0.8s var(--ease-out) 0.2s both; }
.hero__label::before, .hero__label::after { content: ''; width: 32px; height: 1px; background: var(--gold); opacity: 0.4; }
.hero__title { font-size: clamp(2.75rem, 6vw, 4.5rem); font-weight: 400; color: white; line-height: 1.08; margin-bottom: var(--space-xl); animation: fadeInUp 0.8s var(--ease-out) 0.35s both; letter-spacing: -0.02em; }
.hero__title em { font-style: italic; color: var(--gold-light); }
.hero__subtitle { font-size: 1.0625rem; color: rgba(255,255,255,0.75); line-height: 1.7; max-width: 580px; margin: 0 auto var(--space-2xl); animation: fadeInUp 0.8s var(--ease-out) 0.5s both; }
.hero__actions { display: flex; align-items: center; justify-content: center; gap: var(--space-md); animation: fadeInUp 0.8s var(--ease-out) 0.65s both; flex-wrap: wrap; }
.hero__stats { display: flex; align-items: center; justify-content: center; gap: var(--space-3xl); margin-top: var(--space-3xl); animation: fadeInUp 0.8s var(--ease-out) 0.8s both; }
.hero__stat { text-align: center; }
.hero__stat-number { font-family: var(--font-display); font-size: 2.5rem; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.hero__stat-label { font-size: 0.6875rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; }

/* Lifestyle */
.lifestyle-section { padding: var(--space-5xl) 0; background: var(--bg-primary); }
.lifestyle-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3xl); align-items: center; }
.lifestyle-images { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.lifestyle-images img { border-radius: var(--radius-lg); width: 100%; height: 200px; object-fit: cover; }
.lifestyle-images img:first-child { grid-column: span 2; height: 280px; }
.lifestyle-text h2 { margin-bottom: var(--space-lg); }
.lifestyle-text p { color: var(--text-body); margin-bottom: var(--space-lg); line-height: 1.8; }
.lifestyle-features { display: flex; flex-direction: column; gap: var(--space-md); }
.lifestyle-feature { display: flex; align-items: center; gap: var(--space-md); font-size: 0.9375rem; color: var(--text-body); }
.lifestyle-feature__icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--green-muted); border-radius: var(--radius-md); color: var(--green-mid); flex-shrink: 0; }

/* Investment */
.investment-section { padding: var(--space-5xl) 0; background: var(--bg-dark); color: var(--text-white); }
.investment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-xl); margin-top: var(--space-3xl); }
.invest-card { padding: var(--space-2xl); background: var(--bg-card-dark); border: 1px solid var(--border-dark); border-radius: var(--radius-lg); transition: all var(--duration-normal) var(--ease-out); position: relative; overflow: hidden; text-align: center; }
.invest-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), transparent); opacity: 0; transition: opacity var(--duration-normal); }
.invest-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.3); }
.invest-card:hover::before { opacity: 1; }
.invest-card__number { font-family: var(--font-display); font-size: 2.5rem; color: var(--gold); line-height: 1; margin-bottom: var(--space-sm); }
.invest-card__title { font-family: var(--font-body); font-size: 0.9375rem; font-weight: 600; color: var(--text-white); margin-bottom: var(--space-sm); }
.invest-card__desc { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.6; }

/* Property Types */
.types-section { padding: var(--space-5xl) 0; background: var(--bg-secondary); }
.types-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
.type-card { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-card); transition: all var(--duration-normal); }
.type-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.type-card__image { aspect-ratio: 4/3; }
.type-card__image img { width: 100%; height: 100%; object-fit: cover; }
.type-card__body { padding: var(--space-2xl); display: flex; flex-direction: column; justify-content: center; }
.type-card__label { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: var(--space-sm); }
.type-card__title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: var(--space-md); }
.type-card__desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: var(--space-lg); }
.type-card__uses { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--space-lg); }
.type-card__use { display: flex; align-items: center; gap: 8px; font-size: 0.8125rem; color: var(--text-body); }

/* Services / Trust */
.services-section { padding: var(--space-5xl) 0; background: var(--bg-primary); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }
.service-card { padding: var(--space-2xl); background: var(--bg-card); border: 1px solid var(--border-card); border-radius: var(--radius-lg); transition: all var(--duration-normal) var(--ease-out); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--green-mid), transparent); opacity: 0; transition: opacity var(--duration-normal); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { opacity: 1; }
.service-card__icon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; background: var(--green-muted); border-radius: var(--radius-md); margin-bottom: var(--space-lg); color: var(--green-mid); }
.service-card__icon svg { width: 24px; height: 24px; stroke: var(--green-mid); fill: none; stroke-width: 1.5; }
.service-card__title { font-family: var(--font-display); font-size: 1.25rem; color: var(--text-dark); margin-bottom: var(--space-md); }
.service-card__desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; }

/* CTA Section */
.cta-section { padding: var(--space-5xl) 0; background: var(--green-deep); text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 50%; left: 50%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%); transform: translate(-50%, -50%); }
.cta-section h2 { color: white; position: relative; }
.cta-section p { color: rgba(255,255,255,0.75); position: relative; }
.cta__actions { display: flex; align-items: center; justify-content: center; gap: var(--space-md); position: relative; margin-top: var(--space-2xl); }
