.hero {
  padding-top: var(--nav-h);
  background: var(--cream);
}
.hero-top-bar {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 12px 32px;
  max-width: 1160px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-top-bar span:first-child { margin-right: auto; }

.hero-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 64px;
}

.hero-headline-col { display: flex; flex-direction: column; gap: 40px; }
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--ink);
}
.hero-title em { font-style: italic; color: var(--amber); }
.hero-side-text p {
  font-size: 1rem;
  color: var(--ink-mid);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 28px;
}
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.hero-img-stack {
  position: relative;
  height: 480px;
}
.hero-img {
  position: absolute;
  border-radius: var(--r-lg);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
}
.hero-img-a {
  width: 72%;
  height: 85%;
  top: 0; right: 0;
}
.hero-img-b {
  width: 46%;
  height: 44%;
  bottom: 0; left: 0;
  z-index: 2;
}
.hero-img-c {
  width: 34%;
  height: 28%;
  top: 40%; right: -5%;
  z-index: 3;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--border);
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.hero-stat {
  flex: 1;
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat strong {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
}
.hero-stat span { font-size: 0.73rem; color: var(--ink-soft); font-weight: 500; }
.hero-stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 28px;
}

.marquee-strip {
  overflow: hidden;
  background: var(--amber);
  padding: 14px 0;
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marqueeScroll 22s linear infinite;
}
.marquee-track span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0 20px;
}
.marquee-track b {
  color: rgba(255,255,255,0.4);
  font-weight: 400;
  padding: 0 4px;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.toolkit-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.toolkit-sub {
  font-size: 0.95rem;
  color: var(--ink-mid);
  max-width: 380px;
  line-height: 1.75;
  padding-top: 8px;
}

.toolkit-list {
  border-top: 2px solid var(--ink);
}
.tk-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  cursor: default;
  transition: background 0.2s;
}
.tk-item:hover { background: var(--amber-light); padding-left: 12px; border-radius: var(--r); }
.tk-number {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--border);
  width: 36px;
  flex-shrink: 0;
}
.tk-body { flex: 1; }
.tk-body h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.tk-body p { font-size: 0.85rem; color: var(--ink-mid); line-height: 1.6; }
.tk-arrow {
  font-size: 1.1rem;
  color: var(--border);
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
}
.tk-item:hover .tk-arrow { color: var(--amber); transform: translateX(4px); }

.toolkit-footer { margin-top: 40px; }

.selected-work { padding: 96px 0; }
.selected-work .display-heading { margin-bottom: 48px; }

.work-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px;
}
.work-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  cursor: pointer;
}
.work-item:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.35); }
.work-img {
  height: 260px;
  display: flex;
  align-items: flex-start;
  padding: 18px;
  position: relative;
}
.work-item-large .work-img { height: 340px; }
.work-category {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(6px);
  padding: 5px 12px;
  border-radius: 20px;
}
.work-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px 24px;
}
.work-year { font-size: 0.72rem; color: rgba(255,255,255,0.3); margin-bottom: 4px; }
.work-meta h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: var(--white); }
.work-arrow { font-size: 1.3rem; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.work-item:hover .work-arrow { color: var(--amber); }

.work-footer { margin-top: 40px; text-align: center; }

@media (max-width: 960px) {
  .hero-body { grid-template-columns: 1fr; gap: 40px; padding-top: 48px; }
  .hero-img-stack { height: 320px; }
  .work-grid { grid-template-columns: 1fr; }
  .toolkit-head { flex-direction: column; gap: 16px; }
}
@media (max-width: 640px) {
  .hero-top-bar { display: none; }
  .hero-img-stack { display: none; }
  .hero-title { font-size: 2.8rem; }
  .hero-stat-row { flex-wrap: wrap; gap: 0; padding: 0 20px; }
  .hero-stat { min-width: 40%; padding: 20px 0; }
  .hero-stat-sep { display: none; }
}

.hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.tk-card {
  background: #f3f3f6;
  padding: 30px;
  border-radius: 12px;
  min-height: 140px;
  transition: 0.3s ease;
}

.tk-card:hover {
  transform: translateY(-5px);
}

.tk-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.tk-card p {
  font-size: 0.85rem;
  color: #666;
}

.tk-card.large {
  grid-row: span 2;
}

@media (max-width: 900px) {
  .toolkit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .toolkit-grid {
    grid-template-columns: 1fr;
  }
}
