/* ═══════════════════════════════════════════════════════════════════════
   ANEW MARKET DYNAMICS — Scene imagery additions (May 2026)
   Append to assets/css/styles.css
   ═══════════════════════════════════════════════════════════════════════

   Designed to work in two states:
   - WITH an uploaded background image (richer, photo-rich)
   - WITHOUT an image (clean brand-coloured gradient fallback)

   All four image-bearing classes share consistent overlay treatment so
   imagery feels coordinated even when sourced from different photographers.
*/

/* ── Image hero — used at top of methodology, why-anew, and other content pages ── */
.img-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  margin-bottom: 0;
  color: #fff;
  overflow: hidden;
  /* Fallback gradient if no image is uploaded yet */
  background:
    linear-gradient(135deg, rgba(15, 76, 92, 0.92) 0%, rgba(15, 23, 42, 0.85) 100%),
    linear-gradient(135deg, #0F4C5C 0%, #0F172A 100%);
  background-size: cover;
  background-position: center;
}
.img-hero.with-image {
  background:
    linear-gradient(135deg, rgba(15, 76, 92, 0.78) 0%, rgba(15, 23, 42, 0.65) 100%),
    var(--bg-image) center / cover no-repeat;
}
.img-hero .img-hero-inner {
  max-width: 720px;
  position: relative;
  z-index: 2;
}
.img-hero .eyebrow {
  display: inline-block;
  background: rgba(16, 185, 129, 0.18);
  color: #6EE7B7;
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 18px;
}
.img-hero h1 {
  font-family: var(--font-serif, 'Instrument Serif', Georgia, serif);
  font-size: 52px;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 16px;
}
.img-hero p.lede {
  font-size: 19px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 auto;
  max-width: 600px;
}
@media (max-width: 768px) {
  .img-hero { min-height: 280px; padding: 56px 20px; }
  .img-hero h1 { font-size: 36px; }
  .img-hero p.lede { font-size: 16px; }
}

/* ── Image band — full-width photo strip with content over it ── */
.img-band {
  position: relative;
  padding: 80px 24px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15, 76, 92, 0.92) 0%, rgba(15, 23, 42, 0.88) 100%),
    linear-gradient(135deg, #0F4C5C 0%, #0F172A 100%);
  background-size: cover;
  background-position: center;
}
.img-band.with-image {
  background:
    linear-gradient(135deg, rgba(15, 76, 92, 0.75) 0%, rgba(15, 23, 42, 0.70) 100%),
    var(--bg-image) center / cover no-repeat;
}
.img-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.img-band-header {
  text-align: center;
  margin-bottom: 48px;
}
.img-band-header .eyebrow {
  display: inline-block;
  background: rgba(16, 185, 129, 0.18);
  color: #6EE7B7;
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 16px;
}
.img-band-header h2 {
  font-family: var(--font-serif, 'Instrument Serif', Georgia, serif);
  font-size: 40px;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 12px;
}
.img-band-header p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto;
}
.img-band-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.img-band-tile {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 22px 20px;
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
}
.img-band-tile:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(110, 231, 183, 0.30);
  transform: translateY(-2px);
}
.img-band-tile .tile-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.10);
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.img-band-tile .tile-icon svg {
  width: 32px;
  height: 32px;
  display: block;
}
.img-band-tile h4 {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 6px;
}
.img-band-tile p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 768px) {
  .img-band { padding: 56px 20px; }
  .img-band-header h2 { font-size: 30px; }
  .img-band-header p { font-size: 15px; }
}

/* ── Image card — used inline within page content (no full-width) ── */
.img-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(15, 76, 92, 0.55) 0%, rgba(15, 23, 42, 0.30) 100%),
    linear-gradient(135deg, #0F4C5C 0%, #0F172A 100%);
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.img-card.with-image {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.0) 40%, rgba(15, 23, 42, 0.85) 100%),
    var(--bg-image) center / cover no-repeat;
}
.img-card h3 {
  position: relative;
  z-index: 2;
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  color: #fff;
}

/* ── Pictured info section — image on one side, text on the other ── */
.img-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin: 60px 0;
}
.img-split-photo {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, #0F4C5C 0%, #0F172A 100%);
  background-size: cover;
  background-position: center;
}
.img-split-photo.with-image {
  background: var(--bg-image) center / cover no-repeat;
}
@media (max-width: 900px) {
  .img-split { grid-template-columns: 1fr; gap: 24px; }
}

/* ── End scene imagery additions ── */
