/* =============================================
   INDEX.CSS — Home page styles
   ============================================= */

@import url('variables.css');
@import url('base.css');

/* ── Hero ────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 4rem;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-text {
  animation: fadeUp 0.8s ease both;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--hint);
  margin-bottom: 1.5rem;
}

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.hero-name em {
  font-style: italic;
  color: var(--hint);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 240, 232, 0.55);
  margin-bottom: 2.5rem;
}

.hero-description {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.7);
  max-width: 480px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.hero-link {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.hero-link:hover {
  color: var(--secondary);
}

/* ── Hero visual side ────────────────────── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-portrait-frame {
  position: relative;
  width: 360px;
  height: 440px;
}

.hero-portrait-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid rgba(200, 169, 110, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(200, 169, 110, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Replace .hero-portrait-placeholder with an <img> tag
   when you have a photo. Example:
   <img src="photo.jpg" alt="Your Name" class="hero-photo"> */
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-portrait-frame::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  border: 1px solid rgba(200, 169, 110, 0.15);
  z-index: -1;
}

/* ── Intro strip ─────────────────────────── */
.intro-strip {
  padding: 5rem 4rem;
  border-top: 1px solid rgba(200, 169, 110, 0.1);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.intro-stat {
  animation: fadeUp 0.6s ease both;
}

.intro-stat:nth-child(2) { animation-delay: 0.1s; }
.intro-stat:nth-child(3) { animation-delay: 0.2s; }

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--hint);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
}

/* ── Featured CTA ────────────────────────── */
.featured-cta {
  padding: 6rem 4rem;
  text-align: center;
  border-top: 1px solid rgba(200, 169, 110, 0.1);
}

.featured-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.featured-cta p {
  color: rgba(245, 240, 232, 0.6);
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 8rem 1.5rem 4rem;
    text-align: center;
  }
  .hero-description { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }
  .intro-strip { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .featured-cta { padding: 4rem 1.5rem; }
}
