.micro-hero {
  position: relative; height: 65vh; min-height: 480px; overflow: hidden; margin-top: 58px;
}
.micro-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.micro-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,.7) 0%, rgba(0,0,0,.2) 60%, transparent 100%); }
.micro-hero-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; padding: 0 64px; z-index: 2; max-width: 620px; }
.micro-hero-eyebrow { font-size: 9px; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: #b8973a; margin-bottom: 14px; display: block; }
.micro-hero-title { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; color: #fff; line-height: 1.1; margin-bottom: 16px; }
.micro-hero-text { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.78); line-height: 1.85; margin-bottom: 28px; }
.micro-hero-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; background: #b8973a; color: #fff; font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; text-decoration: none; transition: background .25s; }
.micro-hero-btn:hover { background: #9a7c30; }

/* Intro */
.micro-intro { max-width: 820px; margin: 0 auto; text-align: center; padding: 72px 40px 48px; }
.micro-intro-eyebrow { font-size: 9px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: #b8973a; margin-bottom: 16px; }
.micro-intro-title { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 300; color: #1a1a1a; margin-bottom: 18px; line-height: 1.25; }
.micro-intro-text { font-size: 14px; font-weight: 300; color: #666; line-height: 1.9; }

/* Feature list */
.micro-features { border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.micro-feature { max-width: 1100px; margin: 0 auto; padding: 60px 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; border-bottom: 1px solid #f0f0f0; }
.micro-feature:last-child { border-bottom: none; }
.micro-feature.reverse .micro-feature-img { order: 2; }
.micro-feature.reverse .micro-feature-body { order: 1; }
.micro-feature-img { aspect-ratio: 4/3; overflow: hidden; background: #f0ece4; }
.micro-feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.micro-feature:hover .micro-feature-img img { transform: scale(1.05); }
.micro-feature-tag { font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: #b8973a; display: block; margin-bottom: 12px; }
.micro-feature-title { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 400; color: #1a1a1a; margin-bottom: 14px; line-height: 1.25; }
.micro-feature-text { font-size: 13px; font-weight: 300; color: #666; line-height: 1.9; margin-bottom: 16px; }
.micro-feature-detail { font-size: 11px; color: #aaa; font-style: italic; border-left: 2px solid #e0dbd3; padding-left: 14px; line-height: 1.7; }

/* Stats strip */
.micro-stats { background: #1a1a1a; padding: 60px 40px; }
.micro-stats-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; text-align: center; }
.micro-stat { padding: 20px; border-right: 1px solid rgba(255,255,255,.1); }
.micro-stat:last-child { border-right: none; }
.micro-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 300; color: #d4af70; line-height: 1; margin-bottom: 8px; }
.micro-stat-label { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); }

/* CTA */
.micro-cta { background: #f5f3f0; padding: 80px 40px; text-align: center; }
.micro-cta-eyebrow { font-size: 9px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: #b8973a; margin-bottom: 14px; }
.micro-cta-title { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 300; color: #1a1a1a; margin-bottom: 14px; line-height: 1.2; }
.micro-cta-text { font-size: 13px; color: #666; margin-bottom: 36px; line-height: 1.8; max-width: 500px; margin-left: auto; margin-right: auto; }
.micro-cta-btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 40px; background: #1a1a1a; color: #fff; font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; text-decoration: none; transition: background .25s; }
.micro-cta-btn:hover { background: #b8973a; }

@media (max-width: 900px) {
  .micro-hero-content { padding: 0 32px; } .micro-hero-title { font-size: 38px; }
  .micro-feature { grid-template-columns: 1fr; gap: 28px; padding: 40px 24px; }
  .micro-feature.reverse .micro-feature-img { order: 0; } .micro-feature.reverse .micro-feature-body { order: 0; }
  .micro-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .micro-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .micro-stat:nth-child(2n) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .micro-stat:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 600px) {
  .micro-hero { height: 55vh; } .micro-hero-content { padding: 0 24px; } .micro-hero-title { font-size: 30px; }
  .micro-intro { padding: 48px 20px 32px; } .micro-intro-title { font-size: 28px; }
  .micro-cta { padding: 52px 24px; } .micro-cta-title { font-size: 28px; }
  .micro-stats { padding: 44px 20px; }
  .micro-stats-inner { grid-template-columns: 1fr 1fr; }
}
