/* ════════════════════════════════
   PAGE — index.html
   ════════════════════════════════ */

/* ── SECTION OVERRIDE ── */
section { padding: 6rem 0; }

/* ── TYPOGRAPHY OVERRIDES ── */
.section-label { margin-bottom: 2rem; }

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
}

.prose { max-width: 680px; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 5rem 2rem 4rem;
}

.hero::before {
  background: radial-gradient(ellipse at 30% 20%, rgba(166, 130, 107, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(139, 154, 126, 0.06) 0%, transparent 50%);
}

.hero-mark { font-size: clamp(0.85rem, 1.2vw, 1rem); }

.hero h1 { font-size: clamp(3rem, 7vw, 5.5rem); }

.hero h1 em { font-weight: 300; }

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 520px;
  margin-bottom: 3rem;
}

/* ── SCROLL HINT ── */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}

.scroll-hint span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--terra), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}

/* ── PILLARS ── */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.pillar {
  opacity: 0;
  transform: translateY(24px);
}

.pillar.visible { animation: fadeUp 0.7s ease forwards; }

.pillar-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--terra-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--terra);
}

.pillar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--warm-black);
  margin-bottom: 0.75rem;
}

.pillar p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── GENRES ── */
.genres {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.genre-card {
  border: 1px solid rgba(166, 130, 107, 0.25);
  padding: 2rem;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
}

.genre-card.visible { animation: fadeUp 0.6s ease forwards; }

.genre-card:hover {
  border-color: var(--terra);
  background: rgba(166, 130, 107, 0.04);
  transform: translateY(-2px);
}

.genre-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--warm-black);
  margin-bottom: 0.6rem;
}

.genre-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Imagine the Magic Photography CTA ── */
.bm-section {
  background: linear-gradient(135deg, rgba(166, 130, 107, 0.08) 0%, rgba(139, 154, 126, 0.06) 100%);
  border-top: 1px solid rgba(166, 130, 107, 0.15);
  border-bottom: 1px solid rgba(166, 130, 107, 0.15);
  padding: 5rem 0;
  text-align: center;
}

.bm-section h2 { margin-bottom: 1rem; }

.bm-section .prose {
  margin: 0 auto 2.5rem;
  text-align: center;
}

.bm-link {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-black);
  text-decoration: none;
  padding: 0.9rem 2.5rem;
  border: 1px solid var(--terra);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(16px);
}

.bm-link.visible { animation: fadeUp 0.7s ease forwards; }

.bm-link:hover {
  background: var(--terra);
  color: var(--cream);
}

/* ── CONTACT ── */
.contact-section {
  text-align: center;
  padding: 6rem 0 3rem;
}

.contact-section .prose {
  margin: 0 auto 2.5rem;
  text-align: center;
}

.contact-email {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--terra);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
  opacity: 0;
  transform: translateY(16px);
}

.contact-email.visible { animation: fadeUp 0.7s ease forwards; }
.contact-email:hover { border-bottom-color: var(--terra); }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  section { padding: 4rem 0; }
  .pillars { gap: 2rem; }
  .container { padding: 0 1.5rem; }
}
