/* ── HOME PAGE STYLES ─────────────────────── */

/* Hero */
.hero {
  padding: clamp(56px, 7vw, 104px) 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

.hero__left h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(48px, 5.3vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero__lead {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__right {
  display: flex;
  justify-content: flex-end;
}

.hero__image-frame {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 2 / 3;
  background: #E8E4DC;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.hero__portrait {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 72%;
  border-radius: 15px;
}

.hero__float {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 10px;
  font-family: 'IBM Plex Mono', monospace;
  color: var(--ink);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(21,21,21,0.08);
}

.hero__float--1 { top: 22px; left: -28px; }
.hero__float--2 { top: 46%; right: -30px; }
.hero__float--3 { bottom: 76px; left: -28px; }
.hero__float--4 { bottom: 22px; right: -22px; }

/* Impact */
.impact {
  background: var(--ink);
  padding: 56px 0;
}
.impact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.impact__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.impact__item:last-child { border-right: none; }
.impact__item .eyebrow { color: rgba(247,244,238,0.45); }
.impact__num {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(40px, 5vw, 64px);
  color: #F7F4EE;
  line-height: 1;
}
.impact__plus { color: var(--accent); }

/* Work grid */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.work-card--large {
  grid-column: 1 / -1;
}

.work-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  text-decoration: none;
}

.work-card__img {
  height: 220px;
  overflow: hidden;
  background: var(--card-bg);
}

.work-card--large .work-card__img {
  height: 340px;
}

.work-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.work-card:hover .work-card__img img {
  transform: scale(1.035);
}

.work-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.work-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.work-card__meta .eyebrow {
  font-size: 9px;
  line-height: 1.45;
}

.work-card__arrow {
  flex-shrink: 0;
  font-size: 18px;
  color: var(--muted);
  transition: transform 0.2s, color 0.2s;
}

.work-card:hover .work-card__arrow {
  transform: translateX(4px);
  color: var(--accent);
}

.work-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.work-card p {
  font-size: 14.5px;
}

.work-card .tags {
  margin-top: auto;
  padding-top: 18px;
}

@media (max-width: 900px) {
  .work-card--large .work-card__img,
  .work-card__img {
    height: 240px;
  }
}

/* Capabilities */
.cap-col { padding: 32px 24px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--card-bg); }
.cap-col__icon { margin-bottom: 20px; }
.cap-col h4 { margin-bottom: 16px; font-size: 17px; }
.cap-list { display: flex; flex-direction: column; gap: 8px; }
.cap-list li { font-size: 14px; color: var(--muted); padding-left: 12px; position: relative; }
.cap-list li::before { content: '—'; position: absolute; left: 0; color: var(--accent); font-size: 12px; }

/* Featured story */
.featured-story__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.featured-story__img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.featured-story__role {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}
.featured-story__content h2 { margin-bottom: 8px; }

/* Press list */
.press-list { display: flex; flex-direction: column; }
.press-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.2s;
  text-decoration: none;
}
.press-row:first-child { border-top: 1px solid var(--border); }
.press-row:hover { padding-left: 8px; }
.press-row__pub {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--ink);
  min-width: 200px;
}
.press-row__desc { font-size: 14px; color: var(--muted); flex: 1; }
.press-row__arrow { color: var(--muted); margin-left: auto; transition: transform 0.2s, color 0.2s; }
.press-row:hover .press-row__arrow { transform: translateX(4px); color: var(--accent); }

/* Current direction */
.current-direction { background: var(--card-bg); }
.current-direction__inner { max-width: 720px; }
.current-direction__lead { font-size: 18px; line-height: 1.7; }
.current-direction__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  border: 1.5px solid var(--accent);
  border-radius: 4px;
  color: var(--accent);
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__image-frame { max-width: 400px; margin: 0 auto; }
  .impact__grid { grid-template-columns: repeat(2, 1fr); }
  .impact__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .work-grid { grid-template-columns: 1fr; }
  .work-card--large { grid-column: span 1; }
  .featured-story__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero__float { display: none; }
  .impact__grid { grid-template-columns: 1fr; }
  .press-row__pub { min-width: 0; font-size: 17px; }
  .press-row__desc { display: none; }
}
