/* ============ CONTENT SECTIONS ============ */
.content-section {
  padding: 48px 24px;
  border-top: 1px solid var(--divider);
}

.content-inner {
  max-width: 680px;
  margin: 0 auto;
}

.content-section h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  color: var(--text);
}

.content-section p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 16px;
}

.content-section a {
  color: var(--accent-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-glow);
  transition: border-color 0.2s;
}

.content-section a:hover {
  border-color: var(--accent);
}

/* English section — slightly subdued */
.content-section--en {
  background: var(--bg-warm);
}

.content-section--en h2 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.content-section--en p {
  font-size: 0.82rem;
  line-height: 1.9;
}

/* ============ 3-PHASE CARDS ============ */
.phase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

.phase-card {
  padding: 28px 28px 24px;
  background: var(--bg-warm);
  border: 1px solid var(--divider);
  border-radius: 16px;
  position: relative;
}

.phase-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'Shippori Mincho', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-glow);
  line-height: 1;
}

.phase-card h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0.03em;
}

.phase-duration {
  font-size: 0.7rem !important;
  color: var(--accent-deep) !important;
  letter-spacing: 0.05em;
  margin-bottom: 10px !important;
}

.phase-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 0;
}

/* ============ MAGOWAYASASHII TABLE ============ */
.mago-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 0.82rem;
}

.mago-table th {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  text-align: left;
  padding: 10px 12px;
  border-bottom: 2px solid var(--divider);
}

.mago-table td {
  padding: 12px;
  border-bottom: 1px solid var(--divider);
  color: var(--text-secondary);
  line-height: 1.7;
}

.mago-table td:first-child {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.1rem;
  color: var(--accent-deep);
  text-align: center;
  width: 48px;
}

.mago-table tr:last-child td {
  border-bottom: none;
}

/* ============ SEASON GRID ============ */
.season-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.season-card {
  padding: 24px 20px;
  background: var(--bg-warm);
  border: 1px solid var(--divider);
  border-radius: 14px;
  text-align: center;
}

.season-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.season-card h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.season-card p {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0;
}

/* ============ FAQ ============ */
.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--divider);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
  color: var(--text);
}

.faq-item p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 0;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 640px) {
  .content-section {
    padding: 36px 20px;
  }

  .season-grid {
    grid-template-columns: 1fr;
  }

  .mago-table {
    font-size: 0.78rem;
  }

  .mago-table td,
  .mago-table th {
    padding: 10px 8px;
  }

  .phase-card {
    padding: 24px 20px 20px;
  }
}
