/* ══════════════════════════════════════════
   HOME PAGE — Styles
   ══════════════════════════════════════════ */

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--soft-green);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 48px 100px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 70% 30%, rgba(212,175,134,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 90%, rgba(0,0,0,0.15) 0%, transparent 50%),
    linear-gradient(175deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-tag {
  font-family: var(--sans);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--light-gold);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--warm-white);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s 0.5s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--light-gold);
}

.hero-sub {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
}

/* ── ALTO DIFFERENCE ── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.pillar-card {
  padding: 8px 0;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--soft-green);
}

.pillar-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.5;
}

.pillar-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--deep-black);
  margin-bottom: 8px;
}

.pillar-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--light-gold);
  margin-bottom: 16px;
}

.pillar-card p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* ── BUILT INTO EVERY PROJECT ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--fog);
  padding: 40px;
  border-radius: 2px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  border-color: var(--light-gold);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--soft-green);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.feature-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--deep-black);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ── TRUST SECTION ── */
.trust-section {
  background: var(--cream);
}

.trust-quote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--deep-black);
  max-width: 700px;
  margin: 0 auto 16px;
  text-align: center;
}

.trust-attribution {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--ash);
  text-align: center;
  margin-bottom: 48px;
}

.trust-geo {
  text-align: center;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  color: var(--smoke);
  padding-top: 32px;
  border-top: 1px solid var(--fog);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero {
    padding: 0 24px 80px;
    align-items: flex-end;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .hero-scroll { display: none; }

  .pillars {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}
