.act-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}
.act-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.act-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 18, 16, 0.6);
  z-index: 2;
}
.act-hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.act-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3rem;
  opacity: 0.8;
  transition: opacity 0.3s var(--ease);
}
.act-back:hover {
  opacity: 1;
}
.act-back svg {
  width: 18px;
  height: 18px;
}
.act-hero-icon {
  margin-bottom: 1.5rem;
}
.act-hero-icon svg {
  width: 64px;
  height: 64px;
  stroke-width: 1.5px;
}
.act-hero-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.act-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.act-hero-tagline {
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.9;
}
.act-content {
  background-color: var(--cream);
}
.act-intro {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}
.act-intro-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-light);
}
.act-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 5rem;
}
.act-feature {
  display: flex;
  gap: 1.5rem;
}
.act-feature-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--terracotta);
  flex-shrink: 0;
  margin-top: 0.4rem;
}
.act-feature-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}
.act-feature-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-light);
}
.act-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.activity-page .activity-strip {
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
