/* Hero section specific styles */
.hero__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: clamp(28px, 4vw, 56px); align-items: center;
  padding-top: clamp(32px, 4.5vw, 60px); padding-bottom: clamp(20px, 2.5vw, 32px);
}
.hero__kicker {
  margin-top: 14px; font-family: var(--font-heading); font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.38; font-weight: 500; color: var(--blue); max-width: 34ch;
}
.hero__lede { margin-top: 18px; font-size: 16.5px; line-height: 1.62; color: var(--text-body); max-width: 50ch; }
.hero__actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
.hero__techniques { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--border); }
.hero__techniques-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.hero__techniques-list { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px; }

.hero__media { position: relative; min-width: 0; }
.hero__photo { aspect-ratio: 4/3; border: 1px solid var(--border-blue); position: relative; width: 100%; overflow: hidden; }
.hero__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__stats {
  margin-top: -1px; background: var(--navy); color: var(--white); padding: 22px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 18px;
}
.hero__stat-title { font-family: var(--font-heading); font-size: 15px; font-weight: 600; }
.hero__stat-desc { margin-top: 5px; font-size: 13px; line-height: 1.55; color: var(--on-dark); }
.hero__note { margin-top: 12px; font-size: 12.5px; color: var(--text-muted); }
