/* ===================================
   HOME PAGE STYLES
   =================================== */

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 40px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('/images/background.png');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* Two-column hero inner wrapper */
.hero-inner {
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ===== HERO RIGHT LOGO ===== */
.hero-logo-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-full {
  width: 420px;
  height: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: screen;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  padding: 8px 18px;
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 20px;
  background: rgba(201, 169, 110, 0.06);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  max-width: 700px;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 72px;
  flex-wrap: wrap;
}

/* ===== HERO STATS ===== */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
  white-space: nowrap;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1;
}

.stat-symbol {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--gold);
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border-color);
}

/* ===== SCROLL INDICATOR ===== */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 2;
  animation: fade-in-up 1s ease 1.5s both;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ===== ABOUT TEASER ===== */
.about-teaser {
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 20px;
}

.about-card {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 12px;
}

.about-card:nth-child(2) {
  margin-left: 32px;
}

.about-card:nth-child(3) {
  margin-left: 64px;
}

.about-card-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.about-card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-card-text strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.about-card-text span {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.about-accent-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 169, 110, 0.2);
  top: -40px;
  right: -40px;
  animation: spin-slow 20s linear infinite;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===== PROPERTIES PREVIEW ===== */
.properties-preview {
  position: relative;
}

.property-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.section-cta {
  text-align: center;
}

/* ===== FEATURES STRIP ===== */
.features-strip {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.02), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.feature-item {
  text-align: center;
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.feature-item h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.feature-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .property-cards-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .about-grid { gap: 48px; }
  .hero-inner { gap: 40px; }
  .hero-logo-full { width: 320px; }
}

@media (max-width: 768px) {
  .hero { padding: 0 24px; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 80px;
    gap: 0;
  }
  .hero-logo-right { display: none; }
  .hero-title { font-size: clamp(40px, 10vw, 64px); }
  .hero-stats { gap: 24px; }
  .stat-number { font-size: 32px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-card:nth-child(2),
  .about-card:nth-child(3) { margin-left: 0; }
  .about-accent-circle { display: none; }

  .property-cards-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 480px) {
  .hero { padding: 0 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-scroll-indicator { display: none; }
  .hero-logo-full { width: 150px; }
}
