.hero {
  position: relative;
  max-width: 1060px;
  width: 100%;
  margin: 0 auto;
  padding: 28px 32px 72px;
}

.hero-intro {
  position: relative;
  min-height: 66vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.hero-text {
  background: rgba(250, 249, 243, 0.62);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: 36px 42px;
  max-width: 640px;
}

.otd-card {
  flex-shrink: 0;
  width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  background: var(--color-paper);
  box-shadow: var(--shadow-card);
  padding: 26px 28px;
  min-height: 260px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.otd-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.otd-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.otd-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--color-accent);
  color: var(--color-accent-ink);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.otd-date {
  font-size: 12.5px;
  color: var(--color-body);
  font-variant-numeric: tabular-nums;
}

.otd-title {
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.25;
  color: var(--color-ink);
  margin-bottom: 6px;
}

.otd-scripture {
  font-size: 12.5px;
  color: var(--color-muted);
  margin-bottom: 10px;
}

.otd-excerpt {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.otd-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
}

.otd-cta .play-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}

.otd-card:hover .otd-cta .play-btn {
  background: var(--color-accent);
}

.otd-cta .play-triangle {
  width: 0;
  height: 0;
  border-left: 9px solid var(--color-accent);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-left: 2px;
  transition: border-left-color 0.15s;
}

.otd-card:hover .otd-cta .play-triangle {
  border-left-color: var(--color-accent-ink);
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-divider {
  width: 46px;
  height: 2px;
  background: var(--color-accent);
  margin-bottom: 24px;
}

.hero-brand-eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-muted-2);
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(44px, 6.8vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
}

.hero p.lede {
  font-size: 18.5px;
  line-height: 1.62;
  color: var(--color-muted);
  max-width: 54ch;
}

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(150px, auto);
  gap: 16px;
  margin-top: 46px;
}

.bento-card {
  cursor: pointer;
  border-radius: 16px;
  padding: 30px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  border: 1px solid var(--color-border);
  background: var(--color-paper);
}

.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.bento-card.primary {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-card.accent {
  background: var(--color-accent-soft);
  border-color: var(--color-border);
}

.bento-card.small {
  padding: 24px;
}

.bento-eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bento-eyebrow .label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted-2);
  font-weight: 700;
}

.bento-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-accent);
}

.bento-arrow {
  color: var(--color-muted-2);
  font-size: 20px;
}

.bento-card.primary h2 {
  font-size: 34px;
  line-height: 1.05;
  margin-bottom: 10px;
}

.bento-count {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}

.bento-count .num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 500;
  color: var(--color-accent);
  line-height: 1;
}

.bento-card.small h3 {
  font-size: 23px;
  margin-bottom: 4px;
  line-height: 1.1;
}

.decade-section {
  margin-top: 48px;
}

.decade-rings-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 22px 4px 4px;
}

.decade-rings {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
}

.decade-ring {
  transition: opacity 0.25s ease, stroke-width 0.25s ease;
  transform-origin: center;
}

.decade-ring.is-hovered {
  opacity: 1 !important;
  stroke-width: 3.5;
  filter: drop-shadow(0 0 4px rgba(81, 105, 79, 0.55));
}

.decade-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.decade-chips .chip:hover,
.decade-chips .chip:focus-visible {
  border-color: var(--color-accent);
  background: var(--color-accent-soft);
  color: var(--color-accent);
}

@media (max-width: 900px) {
  .hero-intro {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
  }

  .hero-text {
    max-width: none;
  }

  .otd-card {
    width: 100%;
  }
}
