/* ============================================
   FIRST IMPRESSIONS — /first-impressions
   Premium editorial-portrait landing page
============================================ */

/* HERO: asymmetric split, text-left image-right */
.fi-hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: calc(var(--nav-height) + 88px) var(--section-padding-x) 96px;
}
.fi-hero-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 72px;
  align-items: center;
}
.fi-hero-text {
  max-width: 540px;
}
.fi-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-red);
  display: block;
  margin-bottom: 36px;
}
.fi-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(46px, 6.2vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 32px;
  color: var(--text-primary);
}
.fi-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.45;
  color: var(--text-secondary);
  margin: 0 0 40px;
  max-width: 32ch;
}
.fi-hero-meta {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.8;
}
.fi-hero-image {
  background: var(--bg-deep);
  overflow: hidden;
}
.fi-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* IN-PAGE IMAGE BREAK */
.fi-break-image {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
}
.fi-break-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* PULL QUOTE */
.fi-pullquote {
  padding: calc(var(--section-padding-y) + 12px) var(--section-padding-x);
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.fi-pullquote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.3;
  color: var(--text-primary);
  margin: 0 auto 32px;
  max-width: 28ch;
}
.fi-pullquote-attribution {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
}

/* NAV active state (for the FIRST IMPRESSIONS link) */
.nav-links a.current {
  color: var(--text-primary);
}

/* ============================================
   RESPONSIVE — TABLET (< 900px)
============================================ */
@media (max-width: 900px) {
  .fi-hero {
    padding: calc(var(--nav-height) + 56px) var(--section-padding-x) 64px;
  }
  .fi-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .fi-hero-text {
    order: 2;
    max-width: 100%;
  }
  .fi-hero-image {
    order: 1;
  }
  .fi-eyebrow { margin-bottom: 24px; }
  .fi-subtitle { margin-bottom: 28px; }

  .fi-break-image { padding: 0 0; }
  .fi-pullquote { padding: 72px var(--section-padding-x); }
}

/* ============================================
   RESPONSIVE — MOBILE (< 640px)
============================================ */
@media (max-width: 640px) {
  .fi-hero {
    padding: calc(var(--nav-height) + 40px) var(--section-padding-x) 48px;
  }
  .fi-hero-grid {
    gap: 36px;
  }
  .fi-title {
    font-size: 40px;
  }
  .fi-subtitle {
    font-size: 18px;
  }
  .fi-hero-meta {
    font-size: 10px;
  }
  .fi-pullquote {
    padding: 56px var(--section-padding-x);
  }
  .fi-pullquote-text {
    font-size: 22px;
  }
}
